PUT
/
identities
/
{identity_uid}
curl --request PUT \
  --url https://api.captaindata.com/v4/identities/{identity_uid} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "timezone": "Europe/Paris",
  "name": "John Doe"
}'
{
  "uid": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2023-10-01T12:00:00Z",
  "workspace_uid": "5678e456-e89b-12d3-a456-426614174001",
  "name": "John Doe",
  "timezone": "Europe/Paris",
  "integrations": []
}

Authorizations

X-API-Key
string
header
required

API key required for authentication. Add your API key in the X-API-Key header.

Path Parameters

identity_uid
string
required

Body

application/json

Response

200
application/json

Identity successfully updated.

The response is of type object.

PUT
/
identities
/
{identity_uid}
curl --request PUT \
  --url https://api.captaindata.com/v4/identities/{identity_uid} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "timezone": "Europe/Paris",
  "name": "John Doe"
}'
{
  "uid": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2023-10-01T12:00:00Z",
  "workspace_uid": "5678e456-e89b-12d3-a456-426614174001",
  "name": "John Doe",
  "timezone": "Europe/Paris",
  "integrations": []
}

Authorizations

X-API-Key
string
header
required

API key required for authentication. Add your API key in the X-API-Key header.

Path Parameters

identity_uid
string
required

Body

application/json

Response

200
application/json

Identity successfully updated.

The response is of type object.