ADC Status Update

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

NameTypeDefinition
account_typestringThe type of account associated with the ADC status update. For this case, the value is client.
member_idstringThe unique identifier of the member account.
statusstringThe 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

NameTypeDefinition
account_typestringThe type of account associated with the ADC status update. For this case, the value is sub-client.
company_namestringThe sub-client's company name
member_idstringThe unique identifier of the member account.
statusstringThe current ADC status of the account. Example values include approved, pending, or rejected.