Skip to main content

Organization Deactivate

Select

SaaS
Customer Managed

This operation deactivates an Organization.

Path Parameters
  • organizationId string required
Request Body required
  • deactivateOptions object required
  • disableBackup boolean required
  • disableLogin boolean required
  • disableRestore boolean required
Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object
  • errorCode integer
  • entity object
  • GUID string
  • _type_ integer
  • providerId integer
  • providerDomainName string
POST /organization/:organizationid/action/deactivate    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"deactivateOptions": {
"disableBackup": true,
"disableLogin": true,
"disableRestore": true
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Organization/:organizationId/action/deactivate' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"deactivateOptions": {
"disableBackup": true,
"disableLogin": true,
"disableRestore": true
}
}'