Organization
Schema Properties
Section titled “Schema Properties”orgId string Required
The unique identifier for the organization.
name string Required
The display name of the organization.
tier enum Required
The billing tier the organization is currently on.
memberCount number Required
The current number of active members.
isVerified boolean Required
Whether the organization has completed domain verification.
SDK Code Samples
Section titled “SDK Code Samples”Copy these snippets to integrate the Organization API into your application.
curl -X POST "https://api.cloudstart.dev/v1/organizations" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{"orgId":"...","name":"...","tier":"...","memberCount":"...","isVerified":"..."}'const options = { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_API_KEY' }, body: JSON.stringify({ "orgId": "...", "name": "...", "tier": "...", "memberCount": "...", "isVerified": "..." })};
fetch('https://api.cloudstart.dev/v1/organizations', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));import requests
url = "https://api.cloudstart.dev/v1/organizations"
headers = { "Content-Type": "application/json", "Authorization": "Bearer YOUR_API_KEY"}
payload = { "orgId": "...", "name": "...", "tier": "...", "memberCount": "...", "isVerified": "..."}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)Interactive Testing
Section titled “Interactive Testing”Use the playground below to simulate creating a new Organization object. This executes a live fetch request directly from your browser.
POST
https://api.cloudstart.dev/v1/organizationsBearer Token
Body (JSON)