AckdbIdentityLink

Maps an external ID (Slack channel, Stripe customer, etc.) to an entity. One entity can have many identity links across many sources.

Properties

entityIdstringrequired

The entity this link belongs to.

sourcestringrequired

Source system (e.g. slack, stripe).

externalIdTypestringrequired

Type of external ID (e.g. slack_channel_id).

externalIdValuestringrequired

The actual external ID value.

confidencenumberrequiredmin 0 · max 1

Confidence score of the link (0-1). 1.0 = verified.

linkedAtstring <date-time>required

When 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"
}