Return the L2 CustomerProfile for a customer, scoped to the caller's org.
GET
/customers/{external_customer_id}/profile
curl \
--request GET 'http://api.example.com/customers/{external_customer_id}/profile' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"org_id": "string",
"external_customer_id": "string",
"features": {},
"signal_count": 42,
"last_signal_at": "string"
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"ctx": {}
}
]
}