Skip to main content
POST
/
v1
/
admin
/
organizations
/
{orgId}
/
vendors
Create a vendor for an organization (admin)
curl --request POST \
  --url http://localhost:3333/v1/admin/organizations/{orgId}/vendors \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "CloudTech Solutions",
  "description": "Cloud infrastructure provider for compute and storage",
  "category": "cloud",
  "status": "not_assessed",
  "website": "https://example.com"
}
'

Path Parameters

orgId
string
required

Body

application/json
name
string
required

Vendor name

Example:

"CloudTech Solutions"

description
string
required

Description of the vendor and services

Example:

"Cloud infrastructure provider for compute and storage"

category
enum<string>

Vendor category

Available options:
cloud,
infrastructure,
software_as_a_service,
finance,
marketing,
sales,
hr,
other
status
enum<string>

Assessment status

Available options:
not_assessed,
in_progress,
assessed
website
string

Vendor website URL

Example:

"https://example.com"

Response

201 - undefined