agenttools
Inboxes

Ack: delete the event once processed

No auth required

An expired event returns 404, the same as an unknown ID.

DELETE/api/inboxes/{id}/events/{eventId}

Parameters

Path
idstringrequired
The inbox ID (`inbox_…`).
eventIdstringrequired
The inbox event ID (`inbevt_…`).

Responses

204The event was deleted.
401No valid API key was provided.
errorobject
type"invalid_request_error" | "authentication_error" | "authorization_error" | "not_found_error" | "rate_limit_error" | "api_error"
codestring
Machine-readable error code.
messagestring
Human-readable error message.
paramstring | null
The offending parameter, when applicable.
403The caller is authenticated but lacks access to the resource.
errorobject
type"invalid_request_error" | "authentication_error" | "authorization_error" | "not_found_error" | "rate_limit_error" | "api_error"
codestring
Machine-readable error code.
messagestring
Human-readable error message.
paramstring | null
The offending parameter, when applicable.
404The resource does not exist or is not visible to the caller.
errorobject
type"invalid_request_error" | "authentication_error" | "authorization_error" | "not_found_error" | "rate_limit_error" | "api_error"
codestring
Machine-readable error code.
messagestring
Human-readable error message.
paramstring | null
The offending parameter, when applicable.

Example request

curl
curl -X DELETE https://agtls.dev/api/inboxes/{id}/events/{eventId}