curl --request POST \
  --url https://{tenant_name}.{region}.techwolf.ai/companies/{external_id}/nace \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "nace_codes": [
    "10110",
    "94910"
  ]
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

external_id
string
required

The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Example:

"a3903505-eb84-42dc-a79f-5e7b1fe897b7"

Query Parameters

type
enum<string>
required

As European member states are free to deepen the baselist of NACE codes to classify economic activities, this parameter specifies the derivative set of NACE codes used as input. For example, NACEBEL-codes are standard use in Belgium.

Available options:
nace_bel
Example:

"nace_bel"

Body

application/json
nace_codes
string[]
required

Collection of NACE-codes used to profile the External Company. Cannot be empty.

Example:
["10110", "94910"]

Response

204
_mintlify/placeholder

No Content