GET
/
payouts
/
config
/
methods
Get a list of 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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication

Response

List of payout methods

object
enum<string>
Available options:
list
data
object[]