Profiles Webhooks
Learn about profiles webhooks.
Profiles webhooks notify your system when:
- A new profile object is added after a newly connected payroll account is scanned with an initial scan.
- An existing profile object is updated with new information after a periodic scan.
#Added
post/v1/webhooks
Implement the profiles.added
webhook to know when a new profile object is added.
- A new profile object is added when a new account object is created and scanned.
Request body
- #eventsarray of stringsrequired
profiles.added
- #namestringrequired
Your name for the webhook subscription.
- #urlstringrequired
Where you want to receive webhook delivery. This can be either a backend URL that you manage, or a URL provided by a webhook management service.
- #secretstringoptional
Optional secret used to verify webhooks.
Example Subscription
1curl --request POST \
2 --url https://api.argyle.com/v1/webhooks \
3 --header 'accept: application/json' \
4 --header 'content-type: application/json' \
5 --data '{
6 "events": ["profiles.added"],
7 "name": "name-for-the-webhook-subscription",
8 "url": "https://your-webhook-backend.com",
9 "secret": "optional-secret"
10 }'
Example Webhook
1{
2 "event": "profiles.added",
3 "name": "A profile was added",
4 "data": {
5 "account": "ada143be-3c90-4534-b7ea-9899674dc6e0",
6 "user": "3823026e-a964-45f6-b201-6b8c096b30d3",
7 "profile": "4334r6e-a964-45eef6-b201-64464"
8 }
9}
#Updated
post/v1/webhooks
Implement the profiles.updated
webhook to know when a profile object is updated.
- Profile objects are updated through periodic scanning.
Request body
- #eventsarray of stringsrequired
profiles.updated
- #namestringrequired
Your name for the webhook subscription.
- #urlstringrequired
Where you want to receive webhook delivery. This can be either a backend URL that you manage, or a URL provided by a webhook management service.
- #secretstringoptional
Optional secret used to verify webhooks.
Example Subscription
1curl --request POST \
2 --url https://api.argyle.com/v1/webhooks \
3 --header 'accept: application/json' \
4 --header 'content-type: application/json' \
5 --data '{
6 "events": ["profiles.updated"],
7 "name": "name-for-the-webhook-subscription",
8 "url": "https://your-webhook-backend.com",
9 "secret": "optional-secret"
10 }'
Example Webhook
1{
2 "event": "profiles.updated",
3 "name": "A profile was updated",
4 "data": {
5 "account": "ada143be-3c90-4534-b7ea-9899674dc6e0",
6 "user": "3823026e-a964-45f6-b201-6b8c096b30d3",
7 "profile": "4334r6e-a964-45eef6-b201-64464"
8 }
9}