Skip to main content
GET
/
async_tasks
/
{async_task}
Retrieve an async task
curl --request GET \
  --url https://sandbox.nmbr.co/services/payroll/async_tasks/{async_task} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<id>",
  "object": "async_task",
  "data": {
    "type": "form_generation",
    "status": "processing",
    "completed_at": null,
    "results": [],
    "created_at": "2026-01-01T00:00:00.000000Z",
    "updated_at": "2026-01-01T00:00:00.000000Z"
  },
  "links": {
    "self": "/async_tasks/<id>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

async_task
string
required

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

data
Async Task · object