Reenqueue DLQ job

post/trade-falcon/api/v1/admin/jobqueue/dlq/{id}/reenqueue

Reenqueue a dead letter queue job back to the main job queue

Path Parameters

  • idstring<uuid>Required
    DLQ job ID

Request Body

Optional parameters to override retry settings when reenqueuing the DLQ job.
maxAttempts integer
Override the maximum number of retry attempts for the new job
maxDurationMs integer
Override max duration before stuck detection (ms)
baseDelayMs integer
Override base retry delay (ms)
maxDelayMs integer
Override max retry delay cap (ms)
retryStrategy string
Override retry backoff strategy
Allowed values: EXPONENTIAL LINEAR FIXED

200 Response

jobId string <uuid>required
ID of the newly created job in the main queue
status string required
Status of the new job
Example: pending
message string required
Human-readable confirmation message
Example: Job reenqueued successfully

400 Response

error string required
Human-readable error message
errorName string required
Immutable error code for API integration
reqId string required
Client request id

403 Response

error string required
Human-readable error message
errorName string required
Immutable error code for API integration
reqId string required
Client request id

404 Response

error string required
Human-readable error message
errorName string required
Immutable error code for API integration
reqId string required
Client request id