Get W-2 sets
GET/api/v8/partner/w2s-set
Get W-2 sets
Request
Responses
- 200
A list of W-2 sets.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count integerrequired
The total number of results retrieved across all pages.
next (string | null)
The URL to the next page of results.
previous (string | null)
The URL to the previous page of results.
results object[]required
id integerrequired
The unique identifier of the W-2 set.
document_ids integer[]
The ID of documents created from the set.
status stringrequired
Possible values: [processed
, in_progress
, deleted
, failed
]
{
"count": 0,
"results": [
{
"id": 0,
"status": "processed"
}
]
}
Loading...