For the complete documentation index, see llms.txt. This page is also available as Markdown.

Retrieve Error Transactions

This API retrieves a filtered list of remediable or discarded error transactions (orders, invoices, events, or MJEs) based on the criteria provided in the request payload.

Method - POST

API End Point

/apis/errortransactions/v1/

Payload

  { "transaction_type": "order", 
    "error_warning_type": "remediable",
    "error_warning_code": "ERR-00015", 
    "error_request_id": "95847f5d-44d9-4da4-bc29-cb6f886704e2", 
    "financial_id": "SO_OFID_SNOW_1310_AE_87", 
    "error_from_date": "2025-07-31", 
    "error_to_date": "2025-12-06"
    "legal_entity" : "LE_18"
    }
  • NOTE: The API for fetching Remediable and Discarded Error Transactions supports multiple request parameters. All fields provided in the request payload function as filters to narrow down the error records returned in the response. This design allows customers to retrieve only the relevant error transactions based on their operational or audit needs, without requiring all fields to be mandatorily populated.

Screenshot for reference

Response

Payload fields description

Field Name
Description
Example

transaction_type

Indicates the type of transaction for which error records are requested. Supported values are order, invoice, event, and mje. This is a mandatory field.

order

error_warning_type

Specifies the category of the error. remediable – errors that can be corrected and reprocessed. discarded – errors that resulted in transaction rejection. Supported values are remediable or discarded

remediable

error_warning_code

Unique code representing the specific error condition encountered during processing.

ERR_00015

error_request_id

Unique identifier assigned to the error occurrence for tracking and audit purposes. This is the request ID of transaction file processed for collection

95847f5d-44d9-4da4-bc29-cb6f886704e2

financial_id

Unique identifier of the impacted transaction. This can be an order financial ID or bill financial ID depending on the transaction type.

GL_Int_RR600.01.01

error_from_date

Start date of the date range for which error transactions should be fetched. Format: YYYY-MM-DD.

2025-01-05

error_to_date

End date of the date range for which error transactions should be fetched. Format: YYYY-MM-DD.

2025-02-05

legal_entity

Users can retrieve error transactions by applying a legal entity filter, which returns errors specific to the selected legal entity.

LE_01

Last updated

Was this helpful?