Requires Team plan.
Request
Body
Example
Response (201)
409 if the slug already exists.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
POST /api/teams
POST /api/teams
{
"name": "My Team"
}
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Team name. Max 50 characters. |
curl -X POST https://lazyraccoon.dev/api/teams \
-H "Authorization: Bearer lr_your_key" \
-H "Content-Type: application/json" \
-d '{"name": "My Team"}'
{
"id": "team-uuid",
"name": "My Team",
"slug": "my-team"
}
409 if the slug already exists.