POST
/
organizations
Create organization
curl --request POST \
  --url https://api.fluxend.app/organizations \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "content": {
    "createdAt": "<string>",
    "createdBy": "<string>",
    "name": "<string>",
    "updatedAt": "<string>",
    "updatedBy": "<string>",
    "uuid": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

Body

application/json

Organization name

The body is of type object.

Response

201
application/json

Organization created

The response is of type object.