Fetch Issuance Details
Retrieves the full details of a single corporate issuance record by its internal ID. Use this to retrieve the exact status and beneficiary card details immediately after approval.
Server
Use the corporate server URLs for this endpoint.
Authorization
bearerAuth tenantId JWT Bearer token from the Authentication API
In: header
Your unique tenant identifier assigned during onboarding
In: header
Path Parameters
Internal issuance record ID (returned in the create response)
Header Parameters
Your unique tenant identifier
Response Body
application/json
application/json
curl -X GET "https://sandbox-api.m2pprepaid.com/prepaid/middleware/v1/corporate-issuances/65a1b2c3d4e5f6789abcdef0" \ -H "X-TENANT-ID: ACME_CORP"{
"result": {},
"pagination": {
"list": true,
"pageSize": 0,
"pageNo": 0,
"totalPages": 0,
"totalElements": 0
}
}{
"type": "https://www.m2pfintech.com/problem/problem-with-message",
"title": "string",
"status": 0,
"detail": "string",
"message": "error.http.400",
"businessCode": "string",
"fieldErrors": [
{
"field": "string",
"message": "string"
}
],
"cause": {},
"errorCode": "string",
"errors": [
"string"
],
"languageCode": "string",
"localizedMessage": "string",
"suppressed": [
{}
]
}Fetch All Issuances GET
Returns a paginated list of all corporate issuances for the calling tenant. Useful for building an issuance dashboard or history screen in the partner portal. ### Server Use the **corporate** server URLs for this endpoint.
Fetch Issuances by Hierarchy and Status GET
Narrows the status query to a specific hierarchy node (branch, sub-corporate, etc.). Useful when the partner portal needs to show issuance status **per branch** rather than across the entire tenant. ### Server Use the **corporate** server URLs for this endpoint.
