Skip to main content
POST
/
organization
Create organization
curl --request POST \
  --url https://app-preprod.cybedefend.com/organization \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "email": "jsmith@example.com",
  "country": "<string>",
  "address": "<string>",
  "website": "<string>",
  "isActive": true
}'
{
  "message": "<string>",
  "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "email": "<string>"
}

Body

application/json
name
string
required

Organization name

email
string<email>
required

Contact email

country
string
required

Country code (ISO 3166-1 alpha-2)

description
string

Organization description

address
string

Organization address

website
string

Organization website

isActive
boolean

Define if the organization is active

Response

Organization created

message
string
required

Creation status message

organizationId
string<uuid>
required

Unique identifier of the created organization

name
string
required

Name of the organization

description
string
required

Description of the organization

email
string
required

Email address of the organization

I