Skip to main content
GET
/
payments
/
{payment}
Retrieve a payment
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/payments/{payment} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "payment",
  "data": {
    "payroll": {
      "id": "<id>",
      "object": "payroll",
      "links": {
        "self": "/payrolls/<id>"
      }
    },
    "remittance_account": null,
    "destination": "payroll_float",
    "method": "pad",
    "amount": 0,
    "status": "pending",
    "process_at": "2026-01-27",
    "expected_at": "2026-01-27",
    "is_impacted_by_weekend_or_holiday": false,
    "is_held": false,
    "held_at": null,
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/payments/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

payment
string
required

Query Parameters

expand
enum<string>[]
Available options:
payroll,
remittance_account

Response

200 - application/json

OK

id
string
read-only

The unique identifier of the object in Nmbr.

object
string
read-only

The type of the object in Nmbr ("payment").

data
Default · object