Skip to main content
GET
/
form_batches
/
{form_batch}
Retrieve a form batch
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/form_batches/{form_batch} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "form_batch",
  "data": {
    "owner": {
      "id": "<id>",
      "object": "business_entity",
      "links": {
        "self": "/business_entities/<id>"
      }
    },
    "form_type": "t4",
    "form_stage": "original",
    "effective_date": "2026-01-01",
    "status": "draft",
    "contact_name": "Prof. Brody Ernser III",
    "contact_email": "weber.pierre@example.net",
    "contact_area_code": "657",
    "contact_phone_number": "3654916",
    "contact_extension": null,
    "note": null,
    "metadata": {
      "counts": {
        "total": 0,
        "valid": 0,
        "invalid": 0,
        "draft": 0,
        "approved": 0,
        "processing": 0,
        "submitted": 0,
        "done": 0,
        "rejected": 0
      },
      "flags": {
        "is_submittable": false
      },
      "timestamps": {
        "submitted_at": null,
        "completed_at": null
      },
      "identifiers": {
        "confirmation_number": null
      }
    },
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/form_batches/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

form_batch
string
required

Query Parameters

expand
enum<string>[]
Available options:
owner

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 ("form_batch").

data
Default · object