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

Create people

Developing
POST
people

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params application/json

Examples

Responses

🟠401Unauthorized
application/json
Body

🟢200No results
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://.coneix.com//Coneix2/api/v1/people' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "firstname": "Xavier",
    "lastname": "Llop",
    "email": "xavillop6+2@gmail.com",
    "company_id": 3265,
    "language": "es_ES",
    "observations": "Observacions persona",
    "observations_company_relation": "Observacions relació empresa"
}'
Response Response Example
401 - Unauthorized
{
    "status": "error",
    "error": "Token invalid"
}
Modified at 2026-02-11 10:11:33
Previous
List of people
Next
Get single people
Built with