Create Ticket

Create a new support ticket.

POST
/api/v1/tickets/create

Description

Creates a ticket in Resolve Now and routes it to Unduit support. Send ticket fields inside formData (required: name, email, summary).

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Body Parameters

ParameterTypeRequiredDescription
formDataobjectYesTicket form payload.
formData.namestringYesRequester name (defaults from corporate user if omitted).
formData.emailstringYesRequester email (defaults from corporate user if omitted).
formData.summarystringYesTicket title.
formData.descriptionstringNoDetailed description.
watchersarrayNoUser IDs to watch the ticket.

Example Request Body

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

Response

FieldTypeDescription
successbooleanWhether the request succeeded.
messagestringHuman-readable confirmation.
ticket_numberstringHuman-readable ticket number.
ticket_idstringTicket ID.

Related Endpoints

Did this page help you?