Skip to main content
GET
/
disbursement
/
{disbursementId}
Returns a disbursement by id
curl --request GET \
  --url https://rest.staging.nickel.com/disbursement/{disbursementId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "PENDING",
  "amountInCents": 10000,
  "bankName": "JP Morgan Chase",
  "accountNumberLastFour": "<string>",
  "paymentIds": [
    "clkqzo2y1000cx9tfohoiodq1"
  ],
  "createdAt": "2023-12-25",
  "paidAt": "2023-12-25"
}

Documentation Index

Fetch the complete documentation index at: https://dev.nickel.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

disbursementId
string
required

ID of the disbursement

Response

Successful operation

id
string
status
string
Example:

"PENDING"

amountInCents
integer<int64>
Example:

10000

bankName
string
Example:

"JP Morgan Chase"

accountNumberLastFour
string
paymentIds
string[]
createdAt
string<date> | null
paidAt
string<date> | null