Skip to main content
GET
/
bill
/
{billId}
Get a bill by ID
curl --request GET \
  --url https://rest.staging.nickel.com/bill/{billId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "amountDueInCents": 123,
  "totalAmountInCents": 123,
  "vendorId": "<string>",
  "vendorName": "<string>",
  "dueDate": "<string>",
  "reference": "<string>",
  "status": "<string>",
  "documents": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

billId
string
required

ID of the bill

Response

Successful operation

id
string
amountDueInCents
integer<int64> | null
totalAmountInCents
integer<int64> | null
vendorId
string | null
vendorName
string | null
dueDate
string | null
reference
string | null
status
string | null
documents
string[]