Sazabi
APIOrganizations

Create an organization

POST
/organizations

Create an organization for the authenticated user.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/organizations" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "organization": {    "id": "string",    "name": "string",    "slug": "string",    "logo": "string"  }}