Skip to main content

Creating PostgreSQL Cluster Client

This operation is used to create PostgreSQL cluster clients

Request Body
  • clientInfo object
  • clientType integer required

    Possible values: >= 43 and <= 43

    Default value: 43

    Client Type

  • dbClusterProperties object
  • appType object
  • applicationId integer required

    Default value: 125

    PostgreSQL Application ID

  • plan object
  • planName string required

    Plan Name

  • entity object
  • clientName string required

    Name of the cluster client

Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object
  • errorCode integer
  • entity object
  • clientId integer
  • clientName string

    Cluster client Name

  • _type_ integer
POST /pseudoclient    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
token
Body

{
"clientInfo": {
"clientType": 43,
"dbClusterProperties": {
"appType": {
"applicationId": 125
}
},
"plan": {
"planName": "string"
}
},
"entity": {
"clientName": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/pseudoClient' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"clientInfo": {
"clientType": 43,
"dbClusterProperties": {
"appType": {
"applicationId": 125
}
},
"plan": {
"planName": "string"
}
},
"entity": {
"clientName": "string"
}
}'