Get a Payout Item by id
Retrieve payout item by payout Id and item Id.
Endpoint
GET /v1/payouts/{payout_id}/items/{item_id}
Scope
payout_items:details
Request
Path Parameters
Name | type | Description |
---|---|---|
payout_id | string | Id of the payout |
item_id | string | Id of the item to retrieve |
Response
Name | Type | Description |
---|---|---|
output | Payout Item | The payout item. |
code | string | The response status code text. |
Test the endpoint
- Production
- Sandbox
curl -X GET 'https://api.minteo.finance/v1/payouts/<payout_id>/items/<item_id>' \
-H 'Authorization: Bearer <your-api-key>'
curl -X GET 'https://api.sandbox.minteo.finance/v1/payouts/<payout_id>/items/<item_id>' \
-H 'Authorization: Bearer <your-api-key>'