- API Keys
- Environments
- Plans
- Companies
- Users
- Events
- Features
- Flags
- Entitlements
- Feature Usage
Request
1 // Get or create company membership (POST /company-memberships) 2 const response = await fetch("https://api.schematichq.com/company-memberships", { 3 method: "POST", 4 headers: { 5 "X-Schematic-Api-Key": "", 6 "Content-Type": "application/json" 7 }, 8 body: JSON.stringify({ 9 "company_id": "company_id", 10 "user_id": "user_id" 11 }), 12 }); 13 14 const body = await response.json(); 15 console.log(body);
Response