AckdbIdentityLink
Maps an external ID (Slack channel, Stripe customer, etc.) to an entity. One entity can have many identity links across many sources.
Properties
entityIdstringrequiredThe entity this link belongs to.
sourcestringrequiredSource system (e.g. slack, stripe).
externalIdTypestringrequiredType of external ID (e.g. slack_channel_id).
externalIdValuestringrequiredThe actual external ID value.
confidencenumberrequiredmin 0 · max 1Confidence score of the link (0-1). 1.0 = verified.
linkedAtstring <date-time>requiredWhen this identity link was created.
Example
AckdbIdentityLink example
{
"entityId": "01HXYZ123456789ABCDEFGH",
"source": "slack",
"externalIdType": "slack_channel_id",
"externalIdValue": "C04ABC",
"confidence": 1,
"linkedAt": "1970-01-01T00:00:00.000Z"
}