1. Tickets
ConeixApi
  • Company
    • List of companies
      GET
    • Create company
      POST
    • Edit company
      PATCH
  • Tickets
    • Get single ticket
      GET
    • Get ticket status
      GET
    • Get ticket categories
      GET
    • Create a single ticket
      POST
    • Upload ticket file
      POST
    • Get ticket types
      GET
  • People
    • List of people
      GET
    • Create people
      POST
    • Get single people
      GET
    • Edit people
      PATCH
  • Projects
    • List of projects
      GET
    • Get project status
      GET
  1. Tickets

Get ticket status

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 'https://.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-03-26 07:40:15
Previous
Get single ticket
Next
Get ticket categories
Built with