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

Create company

Developing
POST
companies

Request

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

Body Params application/json

Examples

Responses

🟠401Unauthorized
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://.coneix.com//Coneix2/api/v1/companies' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "New company",
    "fiscal_name": "New company SL",
    "tax_number": "taxnumber",
    "relation_type": "customer",
    "relation_subtype": "A+",
    "sectors": "Despatx arquitectura,Enginyeria",
    "address": "adress",
    "postal_code": "08001",
    "city": "Barcelona",
    "province": "Barcelona",
    "country": "ES", // https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes
    "observations": "test observacions",
    "language": "ca_ES" // es_ES, ca_ES
}'
Response Response Example
{
    "status": "error",
    "error": "Token invalid"
}
Modified at 2026-02-11 11:01:02
Previous
List of companies
Next
Edit company
Built with