Retrieve list of report fields
GET {{baseUrl}}/report-definitions?offset=5&limit=25
Issuers and acquirers use this endpoint to retrieve a list of reports and their fields. To see a list of available standard reports, refer to the Tutorials and Guides section of the Mastercom Extended API Specifications.
Body
PARAM
Key | Datatype | Required | Description |
offset
|
number | Specifies the number of items to offset the start of the list. | |
limit
|
number | Number of items the list should be limited to. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"offset": 5,
"limit": 25,
"count": 950,
"total": 5000,
"reportDefinitions": [
{
"reportDefinitionId": "RD-00-1000",
"description": "Debit Issuer Worked Report",
"reportName": "Debit Issuer Worked Report",
"criteria": [
{
"fieldName": "Start Date",
"fieldDataType": "DATE",
"required": true
}
],
"formats": [
"CSV"
]
},
{
"reportDefinitionId": "RD-00-1000",
"description": "Debit Issuer Worked Report",
"reportName": "Debit Issuer Worked Report",
"criteria": [
{
"fieldName": "Start Date",
"fieldDataType": "DATE",
"required": true
}
],
"formats": [
"CSV"
]
}
]
} |
ENDPOINTS