Skip to content
Endless Documentation

Create Organization

POST
/organizations

Authorization

bearerAuth
AuthorizationBearer <token>

JWT token from authentication

In: header

Request Body

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",    "slug": "string"  }'
{  "id": "string",  "name": "string",  "slug": "string"}