LogoRecal
Rest apiEndpoints

Create Organization

POST
/v1/organizations

Create a new organization

AuthorizationBearer <token>

Recal API token

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/organizations" \  -H "Content-Type: application/json" \  -d '{    "name": "Recal",    "slug": "recal"  }'
{  "data": {    "createdAt": "2025-04-24T00:00:00.000Z",    "name": "Recal",    "slug": "recal",    "members": [      {        "createdAt": "2025-04-24T00:00:00.000Z",        "id": "user_123"      }    ]  }}