curl --request GET \
--url https://api.yorlet.com/v1/payment_initiations \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "payment_initiation",
"type": "inbound_payment",
"inbound_payment": {
"type": "customer",
"customer": "<string>"
},
"account": "<string>",
"deleted": false,
"amount": 123,
"currency": "gbp",
"reference": "<string>",
"metadata": {}
}
]
}Returns a list of your payment initiations. The payment initiations are returned sorted by creation date, with the most recently created payment initiations appearing first.
curl --request GET \
--url https://api.yorlet.com/v1/payment_initiations \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "payment_initiation",
"type": "inbound_payment",
"inbound_payment": {
"type": "customer",
"customer": "<string>"
},
"account": "<string>",
"deleted": false,
"amount": 123,
"currency": "gbp",
"reference": "<string>",
"metadata": {}
}
]
}API Key authentication. Use "Bearer YOUR_API_KEY".
A object with a data property that contains an array of payment initiations.
Was this page helpful?