GET
/
payouts
/
{id}
curl --request GET \
  --url https://public-api.kiwify.com/v1/payouts/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-kiwify-account-id: <api-key>'
{
  "id": "8606aae0-e036-4e55-998a-e0a8de7bf54f",
  "amount": 49633,
  "status": "pending_review",
  "legal_entity_id": "d644de3d-9a02-46b1-aed4-72785fe8828f",
  "created_at": "2023-11-29T14:38:08.740Z",
  "updated_at": "2023-11-29T14:38:08.740Z"
}

Authorizations

x-kiwify-account-id
string
header
required
Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

Response

200
application/json
Payout data
id
string
Example:

"8606aae0-e036-4e55-998a-e0a8de7bf54f"

amount
number
Example:

49633

status
string
Example:

"pending_review"

Example:

"d644de3d-9a02-46b1-aed4-72785fe8828f"

created_at
string
Example:

"2023-11-29T14:38:08.740Z"

updated_at
string
Example:

"2023-11-29T14:38:08.740Z"