Skip to main content

Validate Batch File Pull Transaction

This API is used to validate the AFT batch transactions. The uploaded CSV file will be parsed, and individual transactions will be validated.

Method: POST

Endpoints:

http://localhost:4041/rpc/VisaDirectService/ValidateBatchFilePullTransaction


Request

Payload Parameters
ParameterTypeMandatoryDescription
contentStringYesIt is the base64 format of the CSV file.
fileNameStringNoIt is the name of the file.
batchIdStringYesIt is the ID given to the batch transaction. It should be unique.

Sample Request

{
"content": "UmVjaXBpZW50QWNjb3VudE51bWJlcnxCdXNpbmVzc0FwcGxpY2F0aW9uSWR8TWVyY2hhbnRDYXRlZ29yeUNvZGV8QW1vdW50fFNlbmRlckN1cnJlbmN5Q29kZXxTZW5kZXJBY2NvdW50TnVtYmVyfFNlbmRlckNhcmRFeHBpcnlEYXRlfFNlbmRlck5hbWV8UHVycG9zZU9mUGF5bWVudHxFbmRUb0VuZElECjQwNjAzMjAwMDAwMDAxMjd8RkR8NjAxMnwxNjB8VVNEfDQ4OTUxNDIyMzIxMjAwMDZ8fG1hbml8YmlsbGluZ3wxMTExNDUKNDA2MDMyMDAwMDAwMDEyN3xGRHw2MDEyfDE2MHxVU0R8NDg5NTE0MjIzMjEyMDAwNnx8bWFuaXxiaWxsaW5nfDExMTEyMwo0MDYwMzIwMDAwMDAwMTI3fEZEfDYwMTJ8MTYwfFVTRHw0ODk1MTQyMjMyMTIwMDA2fHxtYW5pfGJpbGxpbmd8MTExMTU2CjQwNjAzMjAwMDAwMDAxMjd8RkR8NjAxMnwxNjB8VVNEfDQ4OTUxNDIyMzIxMjAwMDZ8fG1hbml8YmlsbGluZ3wxMTExODkKNDA2MHxGRHw2MDEyfDE2MHxVU0R8NDg5NTE0MjIzMjEyMDAwNnx8bWFuaXxiaWxsaW5nfDExMTExMgoKCg==",
"batchId": "23456"
}

Sample Response

{
"message": "BATCH FILE PROCESSING"
}