POST/hold/release

Release a hold

Void the remaining reservation and return the funds to the account's available balance.

Required Attributes

hold_idstringrequired

The hold to release

Example: "hold_f11bc3c"

Request
POST/hold/release
curl --location 'https://api.ledgr.dev/v1/hold/release' \
--header 'Authorization: {api_key}' \
--header 'Content-Type: application/json' \
--data '{
  "hold_id": "hold_f11bc3c"
}'
Response

The released hold

{
  "hold": {
    "status": "released",
    "hold_id": "hold_f11bc3c"
  },
  "status": "success"
}
Release a hold - Ledgr | Padle