Skip to main content

Create Compliance Request

This operation is used to create a Compliance Request.

Path Parameters
  • ClientId string required

    Client Id of the salesforce organization

Request Body
  • requestType integer required

    Request Type Ex: Modify-0, Delete-1

  • name string required

    Unique name for the request

  • config object required
  • rules object[] required

    Rules for each object

  • name string required

    Object name

  • options object[] required
  • id string

    record Id

  • fieldValues object[]
  • name string

    Field Name

  • value string

    Value for the field

  • entity object
  • clientId integer required

    Client Id of the salesforce organization

  • backupsetId integer required

    Backupset Id of the salesforce organization

  • instanceId integer required

    Instance Id of the salesforce organization

Responses

OK


Schema
  • processinginstructioninfo object
  • user object
  • userId integer

    User Id of the request creator

  • id integer

    Unique Request Id

  • jobDetails object
  • subTaskId integer
POST /salesforce/:clientid/gdpr/requests    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"requestType": 0,
"name": "string",
"config": {
"rules": [
{
"name": "string",
"options": [
{
"id": "string",
"fieldValues": [
{
"name": "string",
"value": "string"
}
]
}
]
}
]
},
"entity": {
"clientId": 0,
"backupsetId": 0,
"instanceId": 0
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Salesforce/:ClientId/GDPR/Requests' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"requestType": 0,
"name": "string",
"config": {
"rules": [
{
"name": "string",
"options": [
{
"id": "string",
"fieldValues": [
{
"name": "string",
"value": "string"
}
]
}
]
}
]
},
"entity": {
"clientId": 0,
"backupsetId": 0,
"instanceId": 0
}
}'