Skip to main content
POST
/
disputes
Create dispute for a transaction
curl --request POST \
  --url https://api.getovra.com/disputes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transactionId": "<string>",
  "reason": "unauthorized",
  "description": "<string>"
}
'
{
  "id": "<string>",
  "transactionId": "<string>",
  "reason": "<string>",
  "description": "<string>",
  "status": "open",
  "amountEuros": 123,
  "evidence": [
    {
      "id": "<string>",
      "type": "<string>",
      "description": "<string>",
      "fileUrl": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "resolvedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key (sk_...) or Agent token (at_...)

Body

application/json
transactionId
string
required
Minimum string length: 1
reason
enum<string>
required
Available options:
unauthorized,
fraud,
not_received,
not_as_described,
duplicate,
incorrect_amount,
canceled,
credit_not_processed
description
string

Response

Dispute created

id
string
transactionId
string
reason
string
description
string | null
status
enum<string>
Available options:
open,
under_review,
resolved,
rejected
amountEuros
number
evidence
object[]
createdAt
string<date-time>
resolvedAt
string<date-time> | null