Skip to content

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

Resolve AutoSKU Dead Letter

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

Use this endpoint to resume execution for an isolated AutoSKU failure. Once the issue (e.g., funding deficiency or locked account) is rectified, passing the exact Ref string of the Dead Letter will replay the exact SAGA task and resolve the block.

FieldTypeRequirementDescription
UsernameStringRequiredThe merchant username associated with the failing AutoSKU saga.
IDNumberStringOptionalThe ID number of the user.
RefStringRequiredThe unique Ref string identifier from the Dead Letter object.
MetadataStringOptionalAny other detail that you wish to store with this event.
{
"Username": "celbuxMerchant",
"IDNumber": "",
"Ref": "AutoSKU_P1_123_456_20260319",
"Metadata": "{\"AdminUserIDs\": \"1000\"}"
}
Terminal window
curl -X POST '{api-url}/resolveAutoSKUDeadLetter?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"Username":"celbuxMerchant","IDNumber":"","Ref":"AutoSKU_P1_123_456_20260319","Metadata":"{\"AdminUserIDs\": \"1000\"}"}'