Implement the reputations.updated
webhook to know when a reputation object is updated.
Reputation objects are updated through periodic scanning.
Event
reputations.updated
Payload
Attribute | Type | Description |
---|---|---|
account | string uuid | ID of the account the reputation was updated for. |
user | string uuid | ID of the user the account belongs to. |
reputation | string uuid | ID of the reputation that was updated. |
Examples
curl -X POST https://api.argyle.com/v1/webhooks \
-u api_key_id:api_key_secret \
-H "Content-Type: application/json" \
-d '{"events": ["reputations.updated"],
"secret": "<secret for signature verification>",
"name": "reputations.updated",
"url": "https://webhook.site/url"}'
{
"event": "reputations.updated",
"name": "A reputation was updated",
"data": {
"account": "ada143be-3c90-4534-b7ea-9899674dc6e0",
"user": "3823026e-a964-45f6-b201-6b8c096b30d3",
"reputation": "4334r6e-a964-45eef6-b201-64464"
}
}