# Data Shared by Customer Sent when a customer shares their data or attestations with your organization through BRIJ. ## Payload ```json { "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 `GetCustomerDataById` in [API Reference](/api-reference) * Fetch the shared attestations using `GetAttestationRecord` in [API Reference](/api-reference) * Update your internal records to reflect the new data availability