Nhảy tới nội dung

Tạo mới ticket

Tạo mới một ticket

HTTP Request

[POST] /api/v6/tickets

Body Parameters

ParameterTypeRequireDescription
ticket_titlestringyesTiêu đề cần hỗ trợ
ticket_contentstringNội dung cần hỗ trợ
cate_idintegeryesDanh mục hỗ trợ
contact_idintegerLiên lạc người hỗ trợ
account_idintegeryesNgười hỗ trợ
status_idintegeryesTrạng thái của phiếu
expected_attimestampNgày mong muốn hoàn thành
emergency_phonenumericSố điện thoại

Example

HTTP Request

POST api/v6/tickets HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
{
"ticket_title": "TEST PUBLIC API",
"cate_id": 1,
"account_id": 1,
"status_id": 1,
"custom_fields": {
"field_1": 111 // field_1 là field_name trong định nghĩa dữ liệu
}
}

Status

200 OK

Response

{
"message": "Thêm mới thành công",
"id": 4
}