GET
/
payouts
/
config
/
methods
curl --request GET \
  --url https://api.sulu.sh/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

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
List of payout methods
object
enum<string>
Available options:
list
data
object[]