Data Shared by Customer

View as Markdown

Sent when a customer shares their data or attestations with your organization through BRIJ.

Payload

1{
2 "dataShared": {
3 "customerId": "cust_abc123",
4 "customerDataIds": [
5 "cd_def456",
6 "cd_ghi789"
7 ],
8 "attestationIds": [
9 "att_jkl012",
10 "att_mno345"
11 ]
12 }
13}

Fields

FieldTypeDescription
customerIdstringThe unique identifier of the customer who shared the data
customerDataIdsstring[]List of customer data IDs that were shared (may be empty)
attestationIdsstring[]List of attestation IDs that were shared (may be empty)

Upon receiving this webhook, you may want to:

  • Fetch the shared customer data using GetCustomerDataById in API Reference
  • Fetch the shared attestations using GetAttestationRecord in API Reference
  • Update your internal records to reflect the new data availability