Skip to main content

Create new ticketCreate a new ticket### HTTP Request[POST] /api/v6/tickets### Body Parameters| Parameter | Type | Require | Description ||:----------------|:---------:|:-------:|:------------------------------|| ticket_title | string | yes | Title of the support request || ticket_content | string | | Content of the support request || cate_id | integer | yes | Support category || contact_id | integer | | Support contact || account_id | integer | yes | Supporter || status_id | integer | yes | Ticket status || expected_at | timestamp | | Desired completion date || emergency_phone | numeric | | Phone number |### ExampleHTTP RequesthttpPOST api/v6/tickets HTTP/1.1Host: example.getflycrm.comContent-Type: application/json{ "ticket_title": "TEST PUBLIC API", "cate_id": 1, "account_id": 1, "status_id": 1, "custom_fields": { "field_1": 111 // field_1 is the field_name in the data definition }}Status200 OKResponsejson{ "message": "Successfully added", "id": 4}