Update Identity Tag

This endpoint allows you to update the tag parameter of an existing identity tag.

HTTP Request
PATCH {baseurl}/v1/api/identity/{id}

Path Parameters

Parameter Type Required Description
id string Yes The unique identifier of the identity tag to update.

Request Body Parameters

Parameter Type Required Description
tag string Yes A new distinctive tag for the identity tag. Must be unique for the customer.

Example Request

curl -X PATCH {baseurl}/v1/api/identity/{id} \
-H "Content-Type: application/json" \
-H "x-api-key: {API-KEY}" \
-d '{
        "tag": "Updated Distinctive Tag"
    }'

Notes

  • Ensure the id parameter corresponds to an existing identity tag in the system.
  • The new tag must be unique for the specified customer.

Sample Response

{
    "id": "string",
    "organization": "string",
    "tag": "string",
    "customer": "string",
    "Artifacts": ["string"],
    "verified": true,
    "createdAt": "string",
    "updatedAt": "string"
}