Get postprocessing substages status details

get

/api/erp/integrations/resources/v1/{locale}/files/{id}/postProcessDetails

Returns the processing status of the postprocess substages.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

Default Response

Simple JSON containing post process sub-stages details
Body ()
Root Schema : PostProcessDetails
Type: object
Show Source
Nested Schema : subStages
Type: array
The processing details of post processing substages.
Show Source
Nested Schema : PostProcessSubStage
Type: object
Show Source
Nested Schema : PostProcessException
Type: object
Show Source
Nested Schema : subStages
Type: array
Show Source
Nested Schema : recommendedActions
Type: array
Show Source
Back to Top

Examples

You can use this GET REST operation to get details of the processes which were submitted in the postprocessing stage for an Accounting Hub Transaction File along with their corresponding statuses.

Example URL

Here's an example of the resource URL:

GET

/api/erp/integrations/resources/v1/{locale}/files/{id}/postProcessDetails

cURL Command

curl --location 'https://servername.fa.us2.oraclecloud.com/api/erp/integrations/resources/v1/en-us/files/253116158407643136/postProcessDetails?flowName=fah-import' \
--header 'Authorization: Bearer <Bearer token>

Example Response

Here's an example of the response body in JSON format:


{
    "fileId":"98715717449060352",
    "flowName":"fah-import", 
    "subLedgerName": "LOAN",
    "stageName": "Post Process",
    "stageStatus": "Succeeded",
    "subStages": [{
                    "name": "Create Accounting for Data Set",
                    "ledgerName":"US primary",
                    "requestID": "744900",
                    "requestStatus": "Succeeded",
                    "errors": [],
                    "subStages": [
                        {
                            "name": "Create Accounting: Subprocess",
                            "requestID": "744910",
                            "requestStatus": "Succeeded"
                            "errors": [],
                            "SubStages": []
                        },
                        {
                            "name": "Post Subledger Journal Entries",
                            "requestID": "744911",
                            "requestStatus": "Succeeded"
                            "errors": [],
                            "subStages": [
                                {
                                    "name": "Post Subledger Journal Entries: Subprocess",
                                    "requestID": "744912",
                                    "requestStatus": "Succeeded"
                                    "errors": [],
                                    "subStages": []
                                }
                            ],
                        }
                    ],
                }
     ]
}
Back to Top