GET
/
payout_methods
Get all payout methods
curl --request GET \
  --url https://v2.firstpromoter.com/api/v2/company/payout_methods \
  --header 'ACCOUNT-ID: <api-key>' \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "method": "paypal",
    "date_added": "2023-11-07T05:31:56Z",
    "is_disabled": true,
    "meta": {},
    "is_selected": true,
    "details": {
      "paypal_email": "[email protected]"
    },
    "managed_payouts": true
  }
]

Authorizations

Authorization
string
header
required

Access token passed as a Bearer token in the Authorization header

ACCOUNT-ID
string
header
required

Account identifier that specifies which account is making the request

Query Parameters

filters[promoter_id]
integer
required

Promoter id

Response

200
application/json

List of payout methods

The response is of type object[].