Membership
All webhooks related to Duda's Membership events are listed below.
Member Created
A notification is sent when a new member joins the site. Event type: MEMBER_CREATED
{
"data": {
"id": "53140bbb-ccc5-4fb7-9ab3-260e327c07c0",
"email": "[email protected]",
"first_name": "John",
"last_name": "Smith",
"status": "PENDING",
"signup_timestamp": 1683201225981
},
"source": null,
"resource_data": {
"site_name": "f925383f"
},
"event_timestamp": 1683201226067,
"event_type": "MEMBER_CREATED"
}
Name | Type | Description |
---|---|---|
data.id | string | A unique identifier for the member |
data.email | string | The member email |
data.first_name | string | The first name of the member |
data.last_name | string | The last name of the member |
data.status | string | Status of the member. Possible values are ACTIVE , PENDING , UNAUTHORIZED |
data.signup_timestamp | timestamp | The member signup date in Unix format |
Member Updated
A notification is sent when the member status is changed. Event type: MEMBER_UPDATED
{
"data": {
"id": "53140bbb-ccc5-4fb7-9ab3-260e327c07c0",
"email": "[email protected]",
"first_name": "John",
"last_name": "Smith",
"status": "ACTIVE",
"signup_timestamp": 1683201225981
},
"source": null,
"resource_data": {
"site_name": "f925383f"
},
"event_timestamp": 1683201226067,
"event_type": "MEMBER_UPDATED"
}
Member Deleted
A notification is sent when a member is deleted from the site. Event type: MEMBER_DELETED
{
"data": {
"id": "53140bbb-ccc5-4fb7-9ab3-260e327c07c0",
"email": "[email protected]",
"first_name": "John",
"last_name": "Smith",
"status": "PENDING",
"signup_timestamp": 1683201225981
},
"source": null,
"resource_data": {
"site_name": "f925383f"
},
"event_timestamp": 1683201226067,
"event_type": "MEMBER_DELETED"
}
Updated over 1 year ago