Skip to main content
GET
/
api
/
yativo-card
/
{yativoCardId}
/
transactions
/
dispute-reasons
curl -X GET 'https://crypto-api.yativo.com/api/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/transactions/dispute-reasons' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "message": "Dispute reasons retrieved successfully",
  "data": [
    {
      "reason_code": "unauthorized",
      "description": "I did not authorize this transaction"
    },
    {
      "reason_code": "not_received",
      "description": "Goods or services not received"
    },
    {
      "reason_code": "duplicate",
      "description": "Duplicate charge for the same transaction"
    },
    {
      "reason_code": "incorrect_amount",
      "description": "Amount charged was incorrect"
    },
    {
      "reason_code": "credit_not_processed",
      "description": "Expected credit or refund not processed"
    }
  ]
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
yativoCardId
string
required
The Yativo Card account ID.
curl -X GET 'https://crypto-api.yativo.com/api/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/transactions/dispute-reasons' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "message": "Dispute reasons retrieved successfully",
  "data": [
    {
      "reason_code": "unauthorized",
      "description": "I did not authorize this transaction"
    },
    {
      "reason_code": "not_received",
      "description": "Goods or services not received"
    },
    {
      "reason_code": "duplicate",
      "description": "Duplicate charge for the same transaction"
    },
    {
      "reason_code": "incorrect_amount",
      "description": "Amount charged was incorrect"
    },
    {
      "reason_code": "credit_not_processed",
      "description": "Expected credit or refund not processed"
    }
  ]
}