Second Presentment Documents
Once in the 2nd Presentment phase, this API method is used to receive the supporting documents raised by the acquirer for a claim.
Request/response fields and samples
Request
Path parameters
chargebackId
string, required
Chargeback ID
claimID
string, required
Claim ID
format
string, required
File format. Possible values:
ORIGINAL,
MERGED_TIFF,
MERGED PDF
{
"chargebackId": "CHARGEBACK ID",
"claimID": "CLAIM_ID",
"format": "ORIGINAL_TIFF"
}
Response
STATUS200 OK
Schema
fileAttachment
object
File attachment
filename
string
Filename
file
string
File content in base64 encoded string
{
"fileAttachment": {
"filename": "FILE_NAME",
"file": "BASE64_ENCODED_FILE"
}
}
Other response codes
Further response codes and details can be found here.
Additional info
| HTTP Method | GET |
| URL_URI (SIT/UAT) | https://chargebacks.test.tutuka.cloud/client/claims/{claim-id}/chargebacks/{chargebackId}/documents?format={format} |
| HTTP Headers | Content-Type text/plain |
| Query String Parameters | format={format} |
| Format | JSON |
| Authentication | Bearer BEARER_TOKEN |
| Success Response Code | 200 |
| Error Response Code | 500 |