Create Ticket

Create a new support ticket.

POST
/api/v1/tickets/create

Description

Creates a ticket in Resolve Now. Required form fields: name, email, summary. Optional description, childCategory, watchers, and legal-hold device lists when category is Legal Hold Request.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Body Parameters

ParameterTypeRequiredDescription
namestringYesRequester name (defaults from corporate user if omitted).
emailstringYesRequester email.
summarystringYesTicket title.
descriptionstringNoDetailed description.
childCategorystringNoChild ticket type (e.g. Others, Legal Hold Request).
watchersarrayNoEmail addresses to watch the ticket.

Example Request Body

{
  "name": "Jane Smith",
  "email": "jane.smith@acme.com",
  "summary": "Laptop not powering on",
  "description": "Device SN C02XK1ABCDEF will not boot after OS update.",
  "childCategory": "Others"
}

Response

Related Endpoints

Did this page help you?