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
    • Create phone number
      POST
    • Create email
      POST
    • Edit email
      PATCH
    • Edit phone number
      PATCH
    • Delete phone number
      DELETE
    • Delete email
      DELETE
  • Projects
    • List of projects
      GET
    • Get project status
      GET
  • Schemas
    • other_emails
  1. People

Get single people

Developing
GET
people/{id}

Request

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

Header Params

Body Params multipart/form-data

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://.coneix.com//Coneix2/api/v1/people/14101' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "status": "success",
    "data": {
        "id": 14101,
        "firstname": "Test",
        "lastname": "Test",
        "email": "proposta@coneix.com",
        "observations": "",
        "language": "",
        "related_companies": [
            {
                "company_id": 2,
                "name": "Test Company",
                "observations_company_relation": ""
            }
        ],
        "phone_numbers": [
            {
                "number": "YYYYYYYYY",
                "description": "Treball"
            }
        ],
        "other_emails": [
            {
                "email": "test@test.com",
                "type": 1,
                "type_name": "Professional"
            }
        ]
    }
}
Modified at 2026-06-09 11:29:44
Previous
Create people
Next
Edit people
Built with