ConeixApi
  1. Tickets
ConeixApi
  • Tickets
    • Create a single ticket
      POST
    • Get single ticket
      GET
    • Get tickets status
      GET
    • Upload ticket file
      POST
  • Company
    • List of companies
      GET
  1. Tickets

Get tickets status

Developing
GET
tickets/status

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************

Responses

馃煝200OK
application/json
Body

馃煚401Unauthorized
馃敶500Internal server error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '.coneix.com//Coneix2/api/v1/tickets/status' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - OK
{
    "status": "success",
    "data": [
        {
            "id": 1,
            "name": "1.Pendiente Soluci贸n",
            "description": ""
        },
        {
            "id": 2,
            "name": "2.En ejecucci贸n",
            "description": ""
        },
        {
            "id": 3,
            "name": "3.Pendiente Cierre",
            "description": ""
        },
        {
            "id": 4,
            "name": "4.Pendiente Cliente",
            "description": ""
        },
        {
            "id": 5,
            "name": "Tancada",
            "description": ""
        }
    ]
}
Modified at聽2026-01-05 09:36:21
Previous
Get single ticket
Next
Upload ticket file
Built with