Skip to main content

Create Domain


ApiScope: manage.domain.write
API Scope Level: ServiceSubscriberScope
Request Body required
    domainName string
    ssoPartnerUUID string
    description string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    domainDTO object
    name string
    description string
    uuid string
    ssoPartnerDTO object
    name string
    type string

    Possible values: [SAML_20]

    description string
    uuid string
    attributes object
    property name* string
POST /v2/domains

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
Body required
{
"domainName": "string",
"ssoPartnerUUID": "string",
"description": "string"
}
curl / cURL
curl -L -X POST '/manage/v2/domains' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"domainName": "string",
"ssoPartnerUUID": "string",
"description": "string"
}'