Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

View AutoSKU Dead Letters

POST {api-url}/viewAutoSKUDeadLetters?ns={community}

When an AutoSKU ledger transfer fails (e.g. User is locked, Insufficient funds), it writes the payload to a Dead Letter Queue (DLQ). Use this endpoint to view a paginated list of all trapped failures.

FieldTypeRequirementDescription
UsernameStringOptionalFilter the dead letters by a specific merchant username.
IDNumberStringOptionalThe ID number of the filtered user.
DateFromStringOptionalSpecify the starting date and time for the search (YYYY/MM/DD HH:MM or YYYYMMDD).
DateToStringOptionalSpecify the ending date and time for the search (YYYY/MM/DD HH:MM or YYYYMMDD).
LimitStringOptionalAn integer to limit the quantity of responses.
SortStringOptionalSort direction (asc or desc).
CursorStringOptionalThe cursor string from a previous response to fetch the next page.
MetadataStringOptionalAny other detail that you wish to store with this event.
{
"Username": "celbuxMerchant",
"IDNumber": "",
"DateFrom": "2026/03/18 00:00",
"DateTo": "2026/03/19 23:59",
"Limit": "100",
"Sort": "desc",
"Cursor": "",
"Metadata": "{}"
}
Terminal window
curl -X POST '{api-url}/viewAutoSKUDeadLetters?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"Username":"celbuxMerchant","IDNumber":"","DateFrom":"2026/03/18 00:00","DateTo":"2026/03/19 23:59","Limit":"100","Sort":"desc","Cursor":"","Metadata":"{}"}'