PUT
/
organizations
/
{organizationUUID}
Update organization
curl --request PUT \
  --url https://api.fluxend.app/organizations/{organizationUUID} \
  --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

Path Parameters

organization_id
string
required

Organization ID

Body

application/json

Updated organization details

The body is of type object.

Response

200
application/json

Organization updated

The response is of type object.