Skip to main content
POST
/
api
/
v1
/
orchestration
/
server
/
getDomainServers
cURL
curl --request POST \
  --url https://saas.pads365.com/rdx/NDS.Services.Orchestration/api/v1/orchestration/server/getDomainServers \
  --header 'Content-Type: application/json' \
  --data '{
  "Context": {
    "CorrelationId": "<string>",
    "User": "<string>",
    "UserId": "<string>",
    "Domain": "<string>",
    "SecondaryIdentities": [
      "<string>"
    ],
    "Claims": [
      {
        "Type": "<string>",
        "Value": "<string>"
      }
    ],
    "ImpersonationId": "<string>"
  },
  "Domains": [
    "<string>"
  ]
}'
{
  "Succeeded": true,
  "Message": "<string>",
  "Code": "<string>",
  "Domains": [
    {
      "Name": "<string>",
      "Servers": [
        {
          "Id": "<string>",
          "Host": "<string>",
          "Secure": true,
          "ReverseProxy": true,
          "ClusterId": "<string>",
          "IsLocal": true
        }
      ]
    }
  ]
}

Body

application/json
Context
object
Domains
string[] | null

Response

200 - application/json
Succeeded
boolean
Message
string | null
Code
string | null
Domains
object[] | null