{
  "credit_score": {
    "id": "sub_6f7XtMLymQx3f",
    "name": "credit_score",
    "status": "active",
    "latest_request_id": "crs_pn4ca33GXFaCE",
    "created_at": "2024-04-12T00:21:58.765Z",
    "updated_at": "2024-04-12T00:21:58.765Z"
  }
}

The Entity Subscriptions endpoint controls the state of all Subscriptions for an Entity.

Subscriptions are Products that can provide continuous updates via Webhooks. (e.g. Credit Score Subscription provides updates on an Entity’s credit score)

Most subscriptions are accessible by default. However, some subscriptions have restricted access requiring team-by-team enablement and elevated account verification.

Subscription Names

Subscriptions that an Entity can be enrolled in:

NameUse-CaseResource Doc
connectComprehensive view of an Entity’s outstanding liabilities and continuous near real-time updates on new liabilities.Connect
credit_scoreContinuous near real-time updates on an Entity’s credit score.Credit Scores

Subscriptions Objects

id
string

Unique identifier for the Subscription.

name
string

The name of the Subscription. See Subscription Names.

status
enum

Status of the Subscription.

latest_request_id
string | null

ID of the most recently created Product resource under this Subscription.

created_at
string

Timestamp of when the Subscription was created.

updated_at
string

Timestamp of when the Subscription was last updated.

Webhook Payload

The Webhook payload will contain the following information:

{
  "id": "string",
  "type": "subscription.create" | "subscription.update",
  "path": "/entities/<ent_id>/subscriptions/<sub_id>",
}
{
  "credit_score": {
    "id": "sub_6f7XtMLymQx3f",
    "name": "credit_score",
    "status": "active",
    "latest_request_id": "crs_pn4ca33GXFaCE",
    "created_at": "2024-04-12T00:21:58.765Z",
    "updated_at": "2024-04-12T00:21:58.765Z"
  }
}