Checking Job Status

This endpoint responds with the status of the triggered CSV Export, represented by its csvGuid.
The status can have one of the following values:
  • Queued
  • InProgress
  • Ready
  • Error

Endpoint

GET_RTR_EXPORT_STATUS

Request Parameters

URL Parameter Sample Value
csvGuid 3b549543-d420-401a-b424-29c7f3c75713

Sample Response Body

1<namespace>.OffPlatformCallout request = new <namespace>.OffPlatformCallout('GET_RTR_EXPORT_STATUS','0001');
2Map<String, String> params = new Map<String, String>();
3params.put('csvGuid', '<CSV Guid received as response from Triggering CSV Export>');
4<namespace>.OffPlatformCalloutResponse response = request.execute(<namespace>.TransactionHandler.getTransactionIdentifier(), params, null);