POSThttps://api.schematichq.com/company-memberships
Body Parameters
View in API Reference
Request
1// Get or create company membership (POST /company-memberships)
2const 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
14const body = await response.json();
15console.log(body);
Response