// Create a membership const response = await fetch('https://api.wellapp.ai/v1/memberships', { method: 'POST', headers: { 'Authorization': 'Bearer your-api-key', 'Content-Type': 'application/json' }, body: JSON.stringify({ data: { type: 'membership', attributes: { membership_role: 'member' }, relationships: { person: { data: { type: 'people', id: 'person-uuid' } }, workspace: { data: { type: 'workspace', id: 'workspace-uuid' } } } } }) });
Was this page helpful?