Caused by

  • A new member joining your Pathwright school. This covers any scenario where a user is logging into your school for the first time.
  • Some example scenarios:

    • A user joins a course via an invitation or link.
    • A user subscribes to your school after creating an account.

Result object

The new school member trigger returns information about a user’s Membership in a school.

  • event: Describes an Event object detailing the type and time of the event being sent to Zapier.
  • id: The ID of the Membership object.
  • user: Describes a User object, namely the new member who joined the school.
  • school: Describes a School object, namely the school that the new member joined.
  • meta: Currently unused.

Example object

{
    "event": {
        "type": "student.membership.created",
        "sent_time": "2014-11-05T21:31:00.988297+00:00"
    },
    "id": 57361,
    "user": {
        "username": "john_doe",
        "first_name": "John",
        "last_name": "Doe",
        "email": "john.doe@example.com",
        "membership": {
            "membership_type": "Student",
            "can_manage_school": false,
            "is_school_admin": false,
            "can_create_course": false
        },
        "id": 52047
    },
    "school": {
        "id": 28421,
        "name": "Online Academy"
    },
    "meta": {}
}