This webhook payload is used to directly update the ADC status of an account. The update indicates the current approval status of a client or sub-client account, such as approved or pending.
Payload Details
type: Specifies the type of event, here adc_status_updated.
action_date: The date and time when the ADC status update was made, formatted as MM/DD/YYYY HH:MM:SS.
payload: An array that contains detailed information about the account and its updated ADC status. The contents of the payload may vary depending on whether the account is a client or sub-client.
Client Account ADC Status Update
Event Sent
{
"type": "adc_status_updated",
"action_date": "05/20/2026 10:30:00",
"payload": [
{
"account_type": "client",
"member_id": "123456",
"status": "approved"
}
]
}
Payload Details
| Name | Type | Definition |
|---|---|---|
| account_type | string | The type of account associated with the ADC status update. For this case, the value is client. |
| member_id | string | The unique identifier of the member account. |
| status | string | The current ADC status of the account. Example values include approved or pending. |
Sub-Client Account ADC Status Update
This case applies when the ADC status update is related to a platform or sub-client account.
Event Sent
{
"type": "adc_status_updated",
"action_date": "05/20/2026 10:30:00",
"payload": [
{
"account_type": "sub-client",
"company_name": "Slyman Bros",
"member_id": "123456",
"status": "pending"
}
]
}
Payload Details
| Name | Type | Definition |
|---|---|---|
| account_type | string | The type of account associated with the ADC status update. For this case, the value is sub-client. |
| company_name | string | The sub-client's company name |
| member_id | string | The unique identifier of the member account. |
| status | string | The current ADC status of the account. Example values include approved, pending, or rejected. |
