Get W-2 sets
GET/api/v8/partner/w2s-set
Get W-2 sets
Request
Responses
- 200
A list of previously processed W-2 sets.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count integerrequired
The total number of results retrieved across all pages.
next string
The URL to the next page of results.
previous string
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,
"next": "string",
"previous": "string",
"results": [
{
"id": 0,
"document_ids": [
0
],
"status": "processed"
}
]
}
Loading...