Skip to main content

Create Pseudo Client

Select

SaaS
Customer Managed

This operation is used to create a Pseudo Client for DB2 Multinode environment

Request Body
  • clientInfo object required
  • clientType integer required

    Possible values: [4]

  • plan object

    Pass this object if you want to associate a default plan to pseudoclient created

  • planName string
  • planId integer required

    ID of the plan to associate to Pseudo Client

  • entity object required
  • clientName string required

    Name of the pseudo client

Responses

OK


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

    ID of the Pseudo Client created

  • clientName string

    Name of the Pseudo Client created

  • _type_ integer
POST /pseudoclient    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"clientInfo": {
"clientType": 4,
"plan": {
"planName": "string",
"planId": 0
}
},
"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": 4,
"plan": {
"planName": "string",
"planId": 0
}
},
"entity": {
"clientName": "string"
}
}'