Skip to main content

Delete Credentials

Select

SaaS
Customer Managed

This operation is used to delete an existing user credential under credentials manager in control panel

Request Body required
  • credentialRecordInfo object[]
  • credentialRecord object
  • credentialName string
  • description string
  • recordType int32
Responses

OK


Schema
  • error object
  • errorMessage string
  • errorCode integer
POST /commcell/credentials/action/delete    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"credentialRecordInfo": [
{
"credentialRecord": {
"credentialName": "{{credentialName}}"
},
"description": "",
"recordType": 1
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/CommCell/Credentials/action/delete' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"credentialRecordInfo": [
{
"credentialRecord": {
"credentialName": "{{credentialName}}"
},
"description": "",
"recordType": 1
}
]
}'