Skip to main content
POST
/
organization
Create organization
curl --request POST \
  --url https://us.cybedefend.com/organization \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "industry": "software",
  "country": "<string>",
  "customerType": "individual",
  "firstName": "<string>",
  "lastName": "<string>",
  "companyName": "<string>",
  "vatNumber": "<string>",
  "billingAddressLine1": "<string>",
  "billingAddressLine2": "<string>",
  "billingCity": "<string>",
  "billingPostalCode": "<string>",
  "billingRegion": "<string>"
}
'
{
  "message": "<string>",
  "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "email": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Organization name

industry
enum<string>
required

Industry sector of the organization (select)

Available options:
software,
finance,
healthcare,
education,
manufacturing,
retail,
government,
energy,
telecom,
freelance,
other
country
string
required

Country code (ISO 3166-1 alpha-2)

customerType
enum<string>
required

Customer type: 'individual' or 'company'

Available options:
individual,
company
firstName
string

First name (required if individual)

lastName
string

Last name (required if individual)

companyName
string

Company name (required if company)

vatNumber
string

VAT number (optional if company)

billingAddressLine1
string

Billing address line 1

billingAddressLine2
string

Billing address line 2

billingCity
string

Billing city

billingPostalCode
string

Billing postal code

billingRegion
string

Billing region/state

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