# User added

This webhook is triggered when a new user is added to the account.  It includes identifying information about the user and their assigned role.

Endpoint: POST add-user
Version: 1.0.0
Security: basicAuth

## Request fields (application/x-www-form-urlencoded):

  - `action` (string, required)
    The action taken. Defaults to add-user.
    Example: "add-user"

  - `action_date` (string, required)
    The UTC timestamp of when the user was added
    Example: "2025-08-07T13:03:39+00:00"

  - `company_id` (integer, required)
    The ID of the company the user was added to
    Example: 215769

  - `user_id` (integer, required)
    The ID of the new user
    Example: 840786

  - `user_name` (string, required)
    The name of the new user
    Example: "Abby"

  - `user_email` (string, required)
    The email address of the new user
    Example: "abby@signable.co.uk"

  - `role` (string, required)
    The assigned role of the new user
    Example: "user"

  - `client_ip` (string, required)
    The IP address from which the user was added
    Example: "203.0.113.150"


## Response 200 fields
