Controlling Message Retry
In some cases, queued messages may remain in retrying state for various reasons, e.g. unavailability of the partner endpoint.
In such cases, you can invoke the following endpoints to stop/resume the retry process.
Stopping Retrying of a Queued AS2 Message
POST /:v/message/queued/:as2_message_id/stop
:as2_message_id
: The AS2 message identifier of the message to stop retrying
200 OK
{
"message": "Successfully stopped retrying AS2 message with ID <id>"
}
Resuming Retrying of a Stopped AS2 Message
POST /:v/message/queued/:as2_message_id/retry
:as2_message_id
: The AS2 message identifier of the message to resume retrying
200 OK
{
"message": "Successfully started retrying AS2 message with ID <id>"
}