Data Shared by Customer¶
Sent when a customer shares their data or attestations with your organization through BRIJ.
Payload¶
{
"dataShared": {
"customerId": "cust_abc123",
"customerDataIds": [
"cd_def456",
"cd_ghi789"
],
"attestationIds": [
"att_jkl012",
"att_mno345"
]
}
}
Fields¶
| Field | Type | Description |
|---|---|---|
customerId |
string |
The unique identifier of the customer who shared the data |
customerDataIds |
string[] |
List of customer data IDs that were shared (may be empty) |
attestationIds |
string[] |
List of attestation IDs that were shared (may be empty) |
Recommended Actions¶
Upon receiving this webhook, you may want to:
- Fetch the shared customer data using the Get Customer Data by ID endpoint
- Fetch the shared attestations using the Get Attestation Record endpoint
- Update your internal records to reflect the new data availability