Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Compliance Procedure Async Evaluation (POST)
This API has these operational limits and hourly processing volumes:
- You can send a maximum of 100 evaluations in a single API call. If you have thousands of evaluations to process, you must split them into smaller batches.
- Your organization can process a maximum of 83,300 compliance evaluations per hour. This applies to all users in your organization combined, not just your specific user account.
- Resource
-
1/connect/compliance/procedure/procedureName/evaluation-async - Resource example
-
1https://yourInstance.salesforce.com/services/data/67.0/connect/compliance/procedure/ComplianceValidationProcedure/evaluation-async - Available version
- 65.0
- HTTP methods
- POST
- Path parameter for POST
-
Parameter Name Type Description Required or Optional Available Version procedureName String API name of the validation procedure to evaluate asynchronously. Required 65.0 - Request body for POST
-
- JSON example
-
1{ 2 "businessOperationsProcess": "businessOperationsProcess1234", 3 "evaluations": [ 4 { 5 "businessContext": [ 6 { 7 "paramName": "accountId", 8 "paramValue": "00100000000AA1" 9 }, 10 { 11 "paramName": "clientKycContext", 12 "paramValue": "0000000n04dn09g002517551181966037068d70d64004d6d9f83d6629a3135ab" 13 } 14 ], 15 "transactionKey": "uuid-1234-5678-9012-eu", 16 "inContextOf": "abc" 17 } 18 ] 19} - Properties
-
Name Type Description Required or Optional Available Version businessOperationsProcess String API name of the business operations process for the evaluation. Optional 65.0 evaluations Compliance Procedure Evaluation Info Input[] Business context to be evaluated. The synchronous evaluation API supports only one business context per validation, whereas the asynchronous evaluation API supports a list of business contexts per validation. Each business context can contain multiple sets of paramName and paramValue.
Required 65.0
- Response body for POST
- Compliance Procedure Async Evaluation