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

Create email

Developing
POST
people/{id}/emails

Request

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

Body Params application/json

Examples

Responses

🟠401Unauthorized
application/json
Bodyapplication/json

🟢200OK
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://.coneix.com//Coneix2/api/v1/people/14101/emails' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "email": "proposta@coneix.com",
  "type": "3", // 1: Professional, 2: Personal, 3: Custom,
  "custom_name": "Custom name",
  "main": false
}'
Response Response Example
401 - Unauthorized
{
    "status": "error",
    "error": "Token invalid"
}
Modified at 2026-05-20 14:47:23
Previous
Create phone number
Next
Edit email
Built with