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

Edit email

Developing
PATCH
people/{id}/emails/{email}

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 --request PATCH 'https://.coneix.com//Coneix2/api/v1/people/14101/emails/proposta@coneix.com' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
  "type": "3", // 1: Professional, 2: Personal, 3: Custom,
  "custom_name": "Custom name2",
  "main": true
}'
Response Response Example
401 - Unauthorized
{
    "status": "error",
    "error": "Token invalid"
}
Modified at 2026-05-20 15:45:51
Previous
Create email
Next
Edit phone number
Built with