v356

OpenAPI 3.0.3raw.githubusercontent.com2026-08-031733562.1 MB
Customer Aliases

Create a new Customer Alias

Create a new Customer Alias

post/customer-aliases

Headers

Authorizationstring required

Your API credentials. Eg. Basic {credentials}.

sequence-version'2024-07-30'

Use this header to select an API version

Idempotency-Keystring

A unique key that makes this request safe to retry (maximum 255 characters). Retrying with the same key returns the original response, and the operation runs at most once. Keys are retained for 24 hours; after that, a request with the same key is treated as new.

Request body

customerIdstring required

Customer ID

valuestring required

Alias value

labelstring

Alias label

Example request

{
  "customerId": "01849e70-703e-705a-b59a-d3fd575587e0",
  "value": "external-customer-alias-123",
  "label": "CRM ID"
}

Response

Created

idstring required

Unique ID

sequenceAccountIdstring required

Sequence Account ID

customerIdstring required

Customer ID

valuestring required

Alias value

createdAtstring required

Created At

deletedAtstring

Deleted At

labelstring

Alias label

archivedAtstring

Archived At

Example response

{
  "id": "01849e70-0a0f-72ca-ba07-5557dd734d43",
  "sequenceAccountId": "ec1479a2-6ba1-421f-a7de-0853a20d17a1",
  "customerId": "01849e70-703e-705a-b59a-d3fd575587e0",
  "value": "external-customer-alias-123",
  "createdAt": "2022-10-01T00:00:00Z",
  "deletedAt": "2022-10-01T00:00:00Z",
  "label": "CRM ID",
  "archivedAt": "2022-10-01T00:00:00Z"
}