curl --request POST \
--url 'https://edi.stateset.com/v1/documents/reprocess-bulk' \
--header "Authorization: Bearer $STATESET_EDI_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"partner_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "pending",
"transaction_set": "string"
}'
Bulk-reprocesses stored **inbound** documents matching a filter — e.g.
re-drive every rejected 850 for a partner after a guide fix. Idempotent like single reprocess; capped at 500 documents per call.
POST
/
v1
/
documents
/
reprocess-bulk
curl --request POST \
--url 'https://edi.stateset.com/v1/documents/reprocess-bulk' \
--header "Authorization: Bearer $STATESET_EDI_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"partner_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "pending",
"transaction_set": "string"
}'
re-drive every rejected 850 for a partner after a guide fix. Idempotent like
single reprocess; capped at 500 documents per call.
Request body
ReprocessBulkBody
string
string
Only documents in this status (e.g.
rejected). Omit for all inbound.string
Response
No response body. Bulk reprocess summary.Status codes
| Code | Meaning |
|---|---|
200 | Bulk reprocess summary |
403 | Admin credential required |
curl --request POST \
--url 'https://edi.stateset.com/v1/documents/reprocess-bulk' \
--header "Authorization: Bearer $STATESET_EDI_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"partner_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "pending",
"transaction_set": "string"
}'
Last modified on August 31, 2026