View and manage payout schedules for your sub-entities.
Payout schedules Operations
View and manage payout schedules for your sub-entities.
The ID of the sub-entity
Unauthorized.
Sub-entity not found, or scheduled payouts are not available to the sub-entity.
Invalid data sent.
Too many requests.
curl 'https://{prefix}.api.sandbox.checkout.com/accounts/entities/ent_w4jelhppmfiufdnatam37wrfc4/payout-schedules' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"GBP": {
"recurrence": {
"enabled": true,
"threshold": 100,
"payment_instrument_id": "ppi_w4jelhppmfiufdnatam37wrfc4",
"schedule": {
"frequency": "weekly",
"by_day": [
"monday"
]
}
},
"_links": {
"self": {
"href": "https://{prefix}.api.checkout.com/accounts/entities/ent_wxglze3wwywujg4nna5fb7ldli"
}
}
}
}The ID of the sub-entity
The three-letter ISO currency code of the account's currency.
Unauthorized
Too many requests
curl 'https://{prefix}.api.sandbox.checkout.com/accounts/entities/ent_w4jelhppmfiufdnatam37wrfc4/payout-schedules' \
--request PUT \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{
"ISO": {
"enabled": true,
"threshold": 100,
"payment_instrument_id": "ppi_w4jelhppmfiufdnatam37wrfc4",
"recurrence": {
"frequency": "weekly",
"by_day": [
"monday"
]
}
}
}'
{
"_links": {
"self": {
"href": "https://{prefix}.api.checkout.com/accounts/entities/ent_wxglze3wwywujg4nna5fb7ldli"
}
}
}