GET
/
hold
/
{id}
curl --request GET \
  --url https://api.treasuryprime.com/hold/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "account_id": "acct_1234567890",
  "amount": "10.00",
  "bank_id": "bank_treasuryprime",
  "expires_at": "2023-11-09T22:39:48Z",
  "hold_description": "Hold description",
  "hold_release_description": "Released description",
  "hold_transaction_id": "ttx_1234567890",
  "id": "hold_1234567890",
  "org_id": "org_fintech",
  "release_transaction_id": null,
  "status": "active"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Unique identifier for object

Response

200 - application/json
The manual_hold

The response is of type object.