community.membership.created
Generated from COPE public event contracts. Do not edit this page by hand.Fires when a user becomes a member of a community.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A member joined a community.
Generated from COPE public event contracts. Do not edit this page by hand.Fires when a user becomes a member of a community.
| Field | Value |
|---|---|
| Encoding | CloudEvents 1.0 structured JSON |
| Delivery | At least once |
| Idempotency | Use the CloudEvents source + id tuple, or COPE idempotency_key when available. |
| Source | cope.community |
| Subject pattern | membership:<identifier> |
| Category | Community |
| Availability | Available in the public webhook reference. |
| Schema title | community.membership.created v1 payload |
| Schema ID | https://schemas.cope.com/events/community.membership.created/v1 |
| Field | Required | Type | Allowed Values | Description | |
|---|---|---|---|---|---|
community_id | yes | string | - | - | |
enrolled_via | no | string | - | - | |
invite_id | no | `string | null` | - | - |
is_expert | no | `boolean | null` | - | - |
level | no | integer | - | - | |
role | yes | string | - | - | |
user_id | yes | string | - | - |
{
"data": {
"community_id": "example_id",
"role": "example_role",
"user_id": "example_id"
},
"datacontenttype": "application/json",
"dataschema": "https://schemas.cope.com/events/community.membership.created/v1",
"id": "community.membership.created:example",
"idempotency_key": "community.membership.created:example",
"source": "cope.community",
"specversion": "1.0",
"subject": "membership:example",
"time": "2026-05-05T12:00:00.000Z",
"type": "community.membership.created"
}
Was this page helpful?