PUT
/
organization
/
{organizationId}
Update organization
curl --request PUT \
  --url https://app-preprod.cybedefend.com/organization/{organizationId} \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "email": "jsmith@example.com",
  "country": "<string>",
  "address": "<string>",
  "website": "<string>",
  "isActive": true
}'
{
  "message": "<string>"
}

Path Parameters

organizationId
string<uuid>
required

Organization identifier

Body

application/json
name
string
required

Organization name

email
string<email>
required

Contact email

country
string
required

Country

description
string

Organization description

address
string

Organization address

website
string

Organization website

isActive
boolean

Define if the organization is active

Response

Organization updated

message
string
required

Message describing the outcome