ConeixApi
  1. Company
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. Company

List of companies

Developing
GET
companies

Request

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

Header Params

Responses

🟢200OK
application/json
Body

🟢200No Results
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '.coneix.com//Coneix2/api/v1/companies?page_number=1&search=coneixos' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json'
Response Response Example
200 - OK
{
    "status": "success",
    "pagination": {
        "total_records": 1,
        "total_pages": 1,
        "current_page": 1,
        "page_size": 10,
        "has_next_page": false,
        "has_previous_page": false
    },
    "data": [
        {
            "id": 338,
            "name": "1657 - CONEIX",
            "fiscal_name": "Coneix Project Management SL",
            "nif": "B63735922"
        }
    ]
}
Modified at 2026-01-05 09:52:32
Previous
Upload ticket file
Built with