New Chargeflow docs. Everything for merchants, platforms, and the API in one place.
Legacy (2024-03-18)Platforms (Connect) APIDisputes

Create Dispute

POST
/public/2024-03-18/disputes
x-api-key<token>

Your Chargeflow API key. Generate it in the Developer Hub under Settings.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/public/2024-03-18/disputes" \  -H "Content-Type: application/json" \  -d '{    "disputeId": "string",    "creationDate": "2019-08-24T14:15:22Z",    "due_by": "2019-08-24T14:15:22Z",    "disputeAmount": 0,    "currency": "string",    "processor": "string",    "isChargeRefundable": true,    "handleByChargeflow": true  }'
{  "requestId": "string"}
Was this page helpful?