1. People
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. People

List of people

Developing
GET
people

Request

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

Responses

🟢200OK
application/json
Body

🟠401Unauthorized
🟢200No results
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://.coneix.com//Coneix2/api/v1/people?company_id=&page_number=1&page_size=10' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - OK
{
    "status": "success",
    "pagination": {
        "total_records": 5,
        "total_pages": 1,
        "current_page": 1,
        "page_size": 10,
        "has_next_page": false,
        "has_previous_page": false
    },
    "data": [
        {
            "id": 14065,
            "firstname": "Albert",
            "lastname": "Boix",
            "company_id": "338",
            "company_name": "1657 - CONEIX",
            "email": "albert.boix@coneix.com"
        },
        {
            "id": 13377,
            "firstname": "Judit",
            "lastname": "Coll",
            "company_id": "338",
            "company_name": "1657 - CONEIX",
            "email": "judit.coll@coneix.com"
        },
        {
            "id": 13376,
            "firstname": "Miquel",
            "lastname": "Delclos",
            "company_id": "338",
            "company_name": "1657 - CONEIX",
            "email": "mdelclos@coneix.com"
        },
        {
            "id": 9726,
            "firstname": "Pol",
            "lastname": "Soler",
            "company_id": "338",
            "company_name": "1657 - CONEIX",
            "email": "psoler@coneix.com"
        },
        {
            "id": 1,
            "firstname": "Técnico",
            "lastname": "Coneix",
            "company_id": "338",
            "company_name": "1657 - CONEIX",
            "email": "proposta@coneix.com"
        }
    ]
}
Modified at 2026-02-04 16:31:36
Previous
Get ticket types
Next
Create people
Built with