Skip to main content

Get a Payout Item by id

Retrieve payout item by payout Id and item Id.

GET/v1/payouts/{payout_id}/items/{item_id}
curl -X GET 'https://api.minteo.finance/v1/payouts/<payout_id>/items/<item_id>' \
-H 'Authorization: Bearer <your-api-key>'
RESPONSE
{
"output": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"payout_id": "d5e5262c-5697-408d-bb9b-48c3cf8c2f89",
"amount": "20000",
"fee_amount": "700",
"full_name": "John Doe",
"token": "COPM",
"legal_identifier_type": "CC",
"legal_identifier": "123456789",
"country_iso": "CO",
"network": "BANK",
"status": "PENDING",
"status_code": "AWAIT_PROCESSING",
"bank_account_details": {
"bank_name": "BANCO_FALABELLA",
"type": "SAVINGS",
"number": "2109309321"
}
},
"code": "OK"
}

Endpoint

GET/v1/payouts/{payout_id}/items/{item_id}

Scope

payout_items:details

Request

Path Parameters

payout_idstring

Id of the payout

item_idstring

Id of the item to retrieve

Response

The payout item.

codestring

The response status code text.