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

Upload ticket file

POST
tickets/{ticket_id}/files

Request

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

Query Params

Header Params

Body Params multipart/form-data

Responses

🟢200OK
application/json
Body

🟠404Not Found
🟠400File too large
🟠400No files
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://.coneix.com//Coneix2/api/v1/tickets/7551/files?Content-type=multipart/form-data' \
--header 'x-api-key: <api-key>' \
--form 'files[]=@"/home/xllop/Descargas/348076.jpg"'
Response Response Example
200 - OK
{
    "status": "success",
    "message": "Files uploaded successfully",
    "uploaded_count": 1
}
Modified at 2026-03-26 07:40:15
Previous
Create a single ticket
Next
Get ticket types
Built with