Unsnooze Agent Ticket
DELETE/api/support/agent/tickets/:ticket/snooze
Brings a snoozed ticket back into the queues now: snoozed_until is cleared and an unsnoozed event is recorded on the timeline (from the previous snoozed_until). Nothing else on the ticket changes. Calling this on a ticket that is not snoozed is harmless — nothing is recorded and the ticket is returned unchanged.
support:writeGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Path parameters
ticket(integer) — the ticket id.
Response — data is the full agent view of the ticket:
id(integer),number(string, e.g.#2451),tenant_id(string, nullable),subject(string)type(string, nullable) — one of: bug, question, feature_request, billing;type_label(string, nullable)status(string) — one of: open, in_progress, waiting_on_customer, awaiting_release, resolved, closed;status_label(string) — the agent-facing labelpriority(string) — one of: low, medium, high, urgentsource(string) — one of: app, email, api, assistant, agent, importvisibility(string) — tenant or requesterrequester({id, name, email};idis null when the requester is not a user) andassignee({id, name, email}, nullable)context(object, nullable) — what the app captured when the ticket was raised;tags[](array of strings)sla—first_response_due_at,resolution_due_at,first_responded_at,resolved_at,closed_at(ISO-8601, each nullable)first_response_sla_status/resolution_sla_status(string) — one of: on_track, breaching_soon (past the policy's warning fraction of the target), breached, paused (the ticket is waiting on the customer), metmerged_into({id, number}, nullable) — set once this ticket was merged into anotherpublic_messages_count(integer),note_count(integer) — customer-visible messages and internal noteslast_customer_message_at,last_agent_message_at(ISO-8601, nullable),reopened_count(integer)csat({score, comment, at}, nullable)participants[]— {id, user_id, name, email, role (requester | cc | watcher), notify}links[]— {id, kind (jira | sentry | deploy | record | ticket | url), ref, url, label, created_at}group_key(string, nullable),external_ref(string, nullable — the id in the previous help desk, e.g.FD-9184),merged_into_ticket_id(integer, nullable),sla_policy_id(integer, nullable),created_by_user_id(integer, nullable)sla_paused_at(ISO-8601, nullable) — set while the resolution clock is pausedsnoozed_until(ISO-8601, nullable) andis_snoozed(boolean — true whilesnoozed_untilis in the future)follow_up_at(ISO-8601, nullable) — the agent's own reminder, never customer-facingai[]— the latest completed, non-withheld AI run of each kind: {id, kind (triage | draft), status, model, output, withheld, withheld_reason, accepted, created_at}created_at,updated_at(ISO-8601)
Authentication: Bearer token with the support:write scope, or an authenticated session, from a caller with an active support role that can work tickets (the viewer role is read-only). No tenant context — this endpoint is central.
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthorized
Response Headers
Forbidden
Response Headers
Not Found
Response Headers
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.