Event user_created – Zapier

Last modified on September 11, 2023 at 6:17 pm

Overview

The user_created event is fired when a new user is created inside the DigitalChalk system.

Names

NameContext
Create UserZapier Trigger Name
user_createdDigitalChalk Internal
dc_user_createdZapier Trigger Key

Payload

{
    "event" : "user_created",
    "date" : "1977-05-25T20:46:14Z",
    "source" : "SELF",
    "user" : {
        "id" : "4ce1cd49673c42f3b9597a2e5cd2fde8",
        "firstName" : "Luke",
        "lastName" : "Skywalker",
        "username" : "jedifarmer",
        "email" : "jedifarmer@tatooine.ort",
        "locale" : "en"
    }
}
  • event – always “user_created” for this type of event
  • date – the datetime that the event was generated
  • source – SELF if a user generated this event, or ADMIN if an admin generated this event
  • user – the new user that was created
  • user.id – the DigitalChalk internal user id
  • user.firstName – the new user’s first name
  • user.lastName – the new user’s last name
  • user.username – the new user’s username
  • user.email – the new user’s email address
  • user.locale – the locale for the new user

Filters

Filters can be applied to events / triggers so that only certain events are fired when they match the filters.  Filters can be set up inside the Zapier UI for the trigger.

Filter NameZapier UI LabelDescription
user.email.endswith Email ends withFilters events to only those where the new user’s email ends with the value given.  Useful to range off new users by domain (e.g. “@mycompany.com”)