GET
/holdRetrieve a hold
Retrieve a single hold by id.
Query Parameters
hold_idstringrequired
The hold id
Example: "hold_f11bc3c"
Request
GET/hold
curl --location 'https://api.ledgr.dev/v1/hold' \
--header 'Authorization: {api_key}'Response
The hold
{
"hold": {
"amount": 5000,
"status": "held",
"hold_id": "hold_f11bc3c",
"entity_id": "ent_customer",
"captured_amount": 0
},
"status": "success"
}