Fetch Disputes by Mobile Number
Retrieves all disputes associated with a customer's mobile number. Supports filtering by dispute network configuration and kit number.
Authorization
bearerAuth tenantId JWT Bearer token from the Authentication API
In: header
Your unique tenant identifier assigned during onboarding
In: header
Header Parameters
Your unique tenant identifier
Request Body
application/json
Customer mobile number
Phone number with country code
Dispute network configuration
Card kit number
Customer entity ID
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"
}Fetch Dispute Reason Codes by Network GET
Retrieves dispute reason codes filtered by a specific card network. Use this endpoint when you know the card network (VISA, RuPay, Mastercard, etc.) and want to show only the applicable reason codes. ### Network IDs | ID | Network | |----|---------| | 1 | VISA | | 2 | RuPay | | 3 | UPI | | 4 | NETC (FASTag) | | 5 | NFS (ATM) | | 6 | Mastercard |
Fetch Dispute Reason Codes by Client and Network POST
Fetches dispute reason codes filtered by client ID and network.
