ConsentEventsResponse
consent object
The consent record the events belong to.
Unique identifier of the consent record.
Identifier of the user the consent belongs to.
Identifier of the organization the consent applies to.
The category of consent this record applies to, such as auto_top_up.
The current consent decision, either granted or revoked.
IP address from which the consent decision was recorded.
How the consent decision was captured, such as web_checkbox or api.
Timestamp when the consent record was created.
Timestamp when the consent record was last updated.
events object[]
List of grant and revoke events for the consent record, most recent first.
Unique identifier of the consent event.
Identifier of the consent record this event belongs to.
Identifier of the user who triggered the event.
The consent decision recorded by this event, either granted or revoked.
IP address from which the event was recorded.
How the consent decision was captured, such as web_checkbox or api.
Timestamp when the event was recorded.
{
"consent": {
"id": 0,
"user_id": 0,
"org_id": 0,
"consent_type": "string",
"action": "string",
"ip_address": "string",
"consent_method": "string",
"created_at": "string",
"updated_at": "string"
},
"events": [
{
"id": 0,
"consent_id": 0,
"user_id": 0,
"action": "string",
"ip_address": "string",
"consent_method": "string",
"created_at": "string"
}
]
}