Skip to main content

BatchFilePullTransaction

This API is used to process the AFT validated batch transactions. The validation will be done by ValidateBatchFilePullTransaction. After validation, the validated transaction will be processed by BatchFilePullTransaction.

Method: POST

Endpoint:

http://localhost:4041/rpc/VisaDirectService/BatchFilePullTransaction


Request

Payload Parameters
ParameterTypeMandatoryDescription
fileIdStringYesIt is the unique ID that is generated while a file is uploaded.
processTransactionBooleanYesThis field should have true or false. If true, the batch file will be processed, and if false, the batch file will be canceled.

Sample Request

{
"fileId": "92001",
"processTransaction": true
}

Sample Response

{
"message": "4 of 5 Batch Transactions Initiated Successfully"
}