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

Edit company

Developing
PATCH
companies/{company_id}

Request

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

Header Params

Body Params application/json

Examples

Responses

🟠401Unauthorized
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH 'https://.coneix.com//Coneix2/api/v1/companies/3265' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "New company 2",
    "fiscal_name": "New company SL",
    "relation_type": "customer",
    "relation_subtype": "customer",
    "sectors": "Consultoria",
    "observations": "test",
    "language": "ca_ES", // es_ES, ca_ES,
    "additional_fields": {
        "12": "51 a 100"
    }
}'
Response Response Example
{
    "status": "error",
    "error": "Token invalid"
}
Modified at 2026-02-11 11:00:48
Previous
Create company
Next
Get single ticket
Built with