Customer Alias
Get Customer Aliases
Retrieve the details of one of your Customer's aliases.
GET
/
customers
/
{id}
/
aliases
Header
Path
curl --request GET \
--url https://eu.sequencehq.com/api/customers/{id}/aliases \
--header 'Authorization: <authorization>'
{
"items": [
{
"createdAt": "2022-10-01T00:00:00Z",
"customerId": "0185a142-54ff-7ce5-846a-fc188432da6e",
"id": "0185a140-194a-7e9d-9fae-6a034fd4a725",
"sequenceAccountId": "cd243b67-7d8c-42ee-b19f-b4e41f584415",
"value": "customer-alias-123"
}
]
}
Headers
Authorizationrequired
string
Your API credentials. Eg. Basic {credentials}
.
Path Parameters
idrequired
string
Customer ID
Response
200 - application/json
itemsrequired
object[]
curl --request GET \
--url https://eu.sequencehq.com/api/customers/{id}/aliases \
--header 'Authorization: <authorization>'
{
"items": [
{
"createdAt": "2022-10-01T00:00:00Z",
"customerId": "0185a142-54ff-7ce5-846a-fc188432da6e",
"id": "0185a140-194a-7e9d-9fae-6a034fd4a725",
"sequenceAccountId": "cd243b67-7d8c-42ee-b19f-b4e41f584415",
"value": "customer-alias-123"
}
]
}