Fetch Forex Card Holder Load by ID
Retrieves the details of a specific forex card holder load transaction, including the load amount, currency, wallet details, fees, and processing status.
Authorization
bearerAuth tenantId In: header
In: header
Path Parameters
Card holder load ID
Header Parameters
Your unique tenant identifier
Response Body
application/json
application/json
curl -X GET "https://sandbox-api.m2pprepaid.com/prepaid/corporate/v1/forex/card-holder-loads/FCHL20260501001" \ -H "X-TENANT-ID: ACME_CORP"{
"result": {
"id": "FCHL20260501001",
"currentStatus": "APPROVED",
"kitNo": "320000541",
"entityId": "476843769320000541160925",
"amount": 500,
"transactionType": "CREDIT",
"product": {
"productId": "FRX001",
"productType": "FOREX"
},
"wallet": {
"accountId": "c515d3a6-6c51-4f64-bd7b-d9cbd9c5b22f",
"walletName": "USD"
}
},
"pagination": null
}{
"type": "https://www.m2pfintech.com/problem/problem-with-message",
"title": "Business validation failed",
"status": 409,
"detail": "Business validation failed",
"message": "error.business",
"businessCode": "PP_CORP_002"
}Fetch All Forex Card Holder Loads GET
Retrieves a paginated list of all forex card holder load transactions. Results include both credit (load) and debit (withdrawal) operations.
Fetch Forex Card Holder Loads by Status GET
Retrieves forex card holder loads filtered by processing status and hierarchy ID. Use the optional `transactionType` parameter to further filter by CREDIT or DEBIT. ### Status Values | Status | Description | |--------|-------------| | `CREATED` | Pending approval | | `APPROVED` | Approved and processed | | `REJECTED` | Rejected by checker | | `FAILED` | Processing failed |
