curl --request GET \
--url https://api.paygentic.io/v0/payouts/config/methods \
--header 'Authorization: Bearer <token>'
{
"object": "list",
"data": [
{
"object": "payoutMethod",
"method": "<string>",
"prettyName": "<string>",
"feeInCents": 123,
"minAmountInCents": 123,
"description": "<string>"
}
]
}
Retrieve a list of available payout methods.
curl --request GET \
--url https://api.paygentic.io/v0/payouts/config/methods \
--header 'Authorization: Bearer <token>'
{
"object": "list",
"data": [
{
"object": "payoutMethod",
"method": "<string>",
"prettyName": "<string>",
"feeInCents": 123,
"minAmountInCents": 123,
"description": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
List of payout methods
The response is of type object
.