...
taskana.adapter.outbox.duration.between.task.creation.retries
- The duration between the retry attempts. Defaults to 1 hour (PT1H) if not provided
Outbox REST-endpoints
Purpose | HTTP-Method | Path parameter | Query parameter | HTTP body example | Endpoint example |
---|---|---|---|---|---|
Delete a failed event | DELETE | eventId | - | - | outbox-rest/events/{eventid} |
Delete all failed events | POST | - | - | - | outbox-rest/events/delete-failed-events |
Get a single event | GET | eventId | - | - | outbox-rest/events/{eventid} |
Get all failed events | GET | - | retries | - | outbox-rest/events?retries=0 |
Get a count for all failed events | GET | - | retries | outbox-rest/events/count?retries=0 | |
Reset the remaining retries of a single failed event | PATCH | eventId | - | {“remainingRetries”:5} 5 is the number of the new remaining retries in this example and can be set to any number | outbox-rest/events/{eventId} |
Reset the remaining retries of all failed events | PATCH | - | retries | {“remainingRetries”:5} 5 is the number of the new remaining retries in this example and can be set to any number | outbox-rest/events?retries=0 |
Unlock the event | POST | eventId | - | outbox-rest/events/unlock-event/{eventId} |