v1
latestOpenAPI 3.0.0Forter License2026-07-1333204516.7 KBDisputes
Dispute
Inform of a dispute initiated by a customer. This endpoint should be used to report any disputes not already reported via webhook from the payment processor. While no decision is provided on this request, it is a required input that both improves the decision model and enables chargeback recovery.
post/v2/claims
Headers
api-versionstring required
Example:10.1
Specify the version of the API to target.
x-forter-siteidstring required
Example:a1b2c3d4e5f6
Forter-assigned ID for your account. Note that your Site ID for your test site is different from your production site.
Authorizationstring required
Example:Basic <base64-encoded-api-key:>
Basic Authentiation in the form of a username and password. Use the API Key as the username and leave the password empty.
Request body
Example request
{
"additionalCost": {
"amountLocalCurrency": "105.55",
"amountUSD": "99.95",
"currency": "CAD"
},
"amount": {
"amountLocalCurrency": "105.55",
"amountUSD": "99.95",
"currency": "CAD"
},
"chargeId": "111111111",
"chargebackShippingInfo": {
"additionalShippingInfo": "PO Box 3297",
"carrier": "UPS",
"proofOfShippingURL": "true",
"signedProofOfShipping": true,
"trackingNumber": "123456"
},
"comments": "Contacted customer via phone",
"dueDate": "2016-01-30",
"externalClaimStatus": "pending merchant response",
"invoiceURL": "mystore.com/invoices/abc123",
"issueDate": "2016-01-20",
"orderId": "4306795",
"processorChargebackCaseId": "CB-4343343219",
"processorName": "Braintree",
"reason": "Fraudulent Transaction: Card Not Present Environment",
"reasonCode": "83",
"reasonType": "FRAUD",
"sourceDetails": "UPS",
"sourceType": "PROCESSOR_CB",
"status": "OPEN",
"type": "CHARGEBACK"
}Response
Example claimResponse
Example response
{
"message": "Claim received",
"status": "success"
}