m2pfintech

Fetch Disputes by Mobile Number

Retrieves all disputes associated with a customer's mobile number. Supports filtering by dispute network configuration and kit number.

POST
/v1/disputes/fetch-by-mobile

Authorization

bearerAuth tenantId
AuthorizationBearer <token>

JWT Bearer token from the Authentication API

In: header

X-TENANT-ID<token>

Your unique tenant identifier assigned during onboarding

In: header

Header Parameters

X-TENANT-ID*string

Your unique tenant identifier

Request Body

application/json

mobile?string

Customer mobile number

mobileNumber?

Phone number with country code

disputeNetworkConf?string

Dispute network configuration

kitNo?string

Card kit number

customerEntityId?string

Customer entity ID

clientId?string

Client identifier

Response Body

application/json

application/json

curl -X POST "https://sandbox-api.m2pprepaid.com/prepaid/corporate/v1/disputes/fetch-by-mobile" \  -H "X-TENANT-ID: ACME_CORP" \  -H "Content-Type: application/json" \  -d '{    "mobile": "9876543210",    "mobileNumber": {      "countryCode": 91,      "value": "9876543210"    }  }'
{
  "result": [
    {
      "result": [],
      "pagination": {
        "list": true,
        "pageSize": 0,
        "pageNo": 0,
        "totalPages": 0,
        "totalElements": 0
      }
    }
  ],
  "pagination": {
    "list": true,
    "pageSize": 0,
    "pageNo": 0,
    "totalPages": 0,
    "totalElements": 0
  }
}

{
  "type": "https://www.m2pfintech.com/problem/constraint-violation",
  "title": "Method argument not valid",
  "status": 400,
  "message": "error.validation"
}