/
User registration

User registration

Upon user registration, JSON data will be sent using the PUT method in the body of the request to links that were registered as data recipients in the user_signup event

Data example:

JSON
{
  "id": 99,
  "title": "sdbgdasgdasg",
  "email": "dasgdsga@zz.cc",
  "phone": "",
  "country": "",
  "city": "",
  "address": "",
  "registered": "2016-12-05 15:46:23"
}


Field description (similar to users/export function)

  • id - user ID

  • title - user full name
  • email - user email
  • phone - user phone number
  • country - user country (only if country selection is enabled)
  • city - user city
  • address - user address
  • registered - date of user registration


Important

When a user registers via the registration form or social networks, some fields may not be filled in.

To download updated users data, use the users/export function


Related content