Trigger immediate retry
const url = 'https://api.hookbridge.io/v1/messages/01935abc-def0-7123-4567-890abcdef012/retry-now';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.hookbridge.io/v1/messages/01935abc-def0-7123-4567-890abcdef012/retry-now \ --header 'Authorization: Bearer <token>'Trigger an immediate retry for a message that is waiting for a scheduled retry.
The message will be picked up by the scheduler on its next run (typically within 1 minute).
Only works for messages in pending_retry status.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Unique message identifier (UUIDv7)
Example
01935abc-def0-7123-4567-890abcdef012Responses
Section titled “Responses”Immediate retry scheduled
object
object
object
Unique identifier for this request (useful for support)
Example
{ "message": "Retry scheduled for immediate pickup", "data": { "message_id": "01935abc-def0-7123-4567-890abcdef012", "status": "pending_retry" }, "meta": { "request_id": "req_xyz123" }}Message is not in pending_retry status
object
object
Machine-readable error code
Human-readable error message
object
Unique identifier for this request (useful for support)
Example
{ "error": { "code": "INVALID_REQUEST", "message": "endpoint must be a valid HTTPS URL" }, "meta": { "request_id": "req_xyz123" }}Unauthorized - Invalid or missing API key
object
object
Machine-readable error code
Human-readable error message
object
Unique identifier for this request (useful for support)
Example
{ "error": { "code": "UNAUTHORIZED", "message": "Invalid or missing API key" }, "meta": { "request_id": "req_xyz123" }}Resource not found
object
object
Machine-readable error code
Human-readable error message
object
Unique identifier for this request (useful for support)
Example
{ "error": { "code": "NOT_FOUND", "message": "Message not found" }, "meta": { "request_id": "req_xyz123" }}Enter your credentials to populate code examples throughout the docs.