Fetch Compliance Requests
Select
SaaS
Customer Managed
This operation is used to fetch All the Compliance requests.
Path Parameters
- ClientId string required
Client Id of the salesforce organization
Query Parameters
- backupSetId integer required
backupSet Id of the salesforce organization
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
requests object[]
requestType integerRequest Type Ex: Modify-0, Delete-1
name stringRequest Name
createdTime integerRequest Creation Time
id integerRequest Id
status integerRequest Status
jobDetails object
Job details
description stringsubTaskId integerconfig object
rules object[]
Rules for each object
name stringObject Name
options object[]
id stringRecord Id
fieldValues object[]
Record Details for Modify Request
name stringField Name
value stringField Value
{
"requests": [
{
"requestType": 0,
"name": "string",
"createdTime": 0,
"id": 0,
"status": 0,
"jobDetails": {
"description": "string",
"subTaskId": 0
},
"config": {
"rules": [
{
"name": "string",
"options": [
{
"id": "string",
"fieldValues": [
{
"name": "string",
"value": "string"
}
]
}
]
}
]
}
}
]
}
Loading...