Added

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.

Event

profiles.added

Payload

AttributeTypeDescription
accountstring uuidID of the account the profile was added to.
userstring uuidID of the user the account belongs to.
profilestring uuidID of the profile object that was added.

Examples

curl -X POST https://api.argyle.com/v1/webhooks \
  -u api_key_id:api_key_secret \
  -H "Content-Type: application/json" \
  -d '{"events": ["profiles.added"],
       "secret": "<secret for signature verification>",
         "name": "profiles.added",
          "url": "https://webhook.site/url"}'
{
    "event": "profiles.added",
    "name": "A profile was added",
    "data": {
        "account": "ada143be-3c90-4534-b7ea-9899674dc6e0",
        "user": "3823026e-a964-45f6-b201-6b8c096b30d3",
        "profile": "4334r6e-a964-45eef6-b201-64464"
    }
}