curl --request POST \
--url https://api.example.com/organizations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"slug": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"created_at": "<string>",
"role": "<string>"
}Create a new organization and grant admin privileges to the caller.
curl --request POST \
--url https://api.example.com/organizations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"slug": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"created_at": "<string>",
"role": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.vinmake.com/llms.txt
Use this file to discover all available pages before exploring further.
The access token received from the authorization server in the OAuth 2.0 flow.