PUT/v1/corecontactfields/{id}

Update corecontactfields

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Path parameters

idstringrequired

Request body application/json

idstringnullable
tenant_idstringnullable
created_atstring (date-time)
updated_atstring (date-time)
namestringnullablemax length 64
typestringnullable
labelstringnullablemax length 64
businessUnitstringnullable
translationsobjectnullable
{key}objectTranslationEntry
labelstringnullable
descriptionstringnullable
customCSSstringnullable
isRequiredboolean
internalDescriptionstringnullable
descriptionstringnullablemax length 512
statusstringnullable
preferenceCatalogIdstringnullable
htmlstringnullable
internalIDstringnullable
isEmailIdentifierboolean
is_deletedboolean
deleted_atstring (date-time)nullable

Responses

No response body.

curl --request PUT \
  --url 'https://api.4comply.io/v1/corecontactfields/00000000-0000-0000-0000-000000000000' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "00000000-0000-0000-0000-000000000000",
  "tenant_id": "your-tenant-id",
  "created_at": "2026-09-07T12:00:00Z",
  "updated_at": "2026-09-07T12:00:00Z",
  "name": "Example name",
  "type": "string",
  "label": "Example label",
  "businessUnit": "string",
  "translations": {
    "en": {
      "label": "Example label",
      "description": "Example text"
    }
  },
  "customCSS": "string",
  "isRequired": true,
  "internalDescription": "string",
  "description": "Example text",
  "status": "active",
  "preferenceCatalogId": "00000000-0000-0000-0000-000000000000",
  "html": "string",
  "internalID": "string",
  "isEmailIdentifier": true,
  "is_deleted": true,
  "deleted_at": "2026-09-07T12:00:00Z"
}'