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.
Triggering CSV Exports
Use the Triggering CSV Exports API to trigger CSV exports simultaneously. The CSV exports
are generated asynchronously.
Request Parameters
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| businessyear | Yes only if calendaryear is not provided as an input. | Integer | Enter the business year for which the CSV export must be triggered. It is used when the write-back datasource is exported. |
| calendaryear | Yes only if businessyear is not provided as an input. | Integer | Enter the calendar year for which the CSV export must be triggered. It is used for inbound integration data sources. |
| metaname | Yes | String | Enter the Internal Name of the RTR Report Configuration. |
| salesorg | Yes | String | Enter the Salesorg name. |
Sample Request Body
1{
2 "salesorg": "0001",
3 "metaname": "IntegrationExportPromotion",
4 "businessyear": 2024
5}Sample Response Body
1{
2 "csvGuid": "94f49a3f-37bc-4794-8051-123456789"
3}