Skip to main content
GET
/
payments
List payments
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/payments \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "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>"
      }
    }
  ],
  "links": {
    "first": "/payments?business_entity_id=<id>&page=1",
    "last": "/payments?business_entity_id=<id>&page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "last_page": 1,
    "per_page": 15,
    "total": 1,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

business_entity_id
string
required
payroll_id
string
remittance_account_id
string
status
enum<string>

Filter by payment status. Supports multiple comma-separated values.

Available options:
canceled,
failed,
overdue,
paid,
pending,
processing
destination
enum<string>

Filter by payment destination. Supports multiple comma-separated values.

Available options:
bill_pay,
cra,
employee,
internal,
no_op,
payroll_float,
rq
method
enum<string>

Filter by payment method. Supports multiple comma-separated values.

Available options:
direct_deposit,
manual,
pad,
wire
is_held
boolean

Filter by hold status. true returns only held payments, false returns only non-held payments.

expected_at
object

Date filters support two formats: Exact Date Match: Provide a well-formatted date in YYYY-MM-DD format for an exact match. Example: expected_at=2024-01-01 Use an array-like syntax to specify a range with one or more comparison operators:

  • gt (greater than)
  • gte (greater than or equal to)
  • lte (less than or equal to)
  • lt (less than) Example: expected_at[gte]=2024-01-01&expected_at[lt]=2024-12-31
process_at
object

Date filters support two formats: Exact Date Match: Provide a well-formatted date in YYYY-MM-DD format for an exact match. Example: process_at=2024-01-01 Use an array-like syntax to specify a range with one or more comparison operators:

  • gt (greater than)
  • gte (greater than or equal to)
  • lte (less than or equal to)
  • lt (less than) Example: process_at[gte]=2024-01-01&process_at[lt]=2024-12-31
sort
enum<string>

Sort order is specified using the format sort=field[:direction][,field[:direction],...] where field is the name of the field to sort by and direction is the optional sort direction (asc or desc).

Available options:
amount,
destination,
expected_at,
process_at,
status
expand
enum<string>[]
Available options:
payroll,
remittance_account

Response

200 - application/json

OK

object
string
read-only

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

data
object[]