GET api/MT_RegularItems?action={action}¶m={param}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| action | string |
Required |
|
| param | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MT_RegularItem| Name | Description | Type | Additional information |
|---|---|---|---|
| LabelId | integer |
None. |
|
| PackageId | integer |
None. |
|
| Code | string |
None. |
|
| DisplayName | string |
None. |
|
| Latest | date |
None. |
|
| DueDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LabelId": 1,
"PackageId": 2,
"Code": "sample string 3",
"DisplayName": "sample string 4",
"Latest": "2025-12-14T03:34:47.5968991+00:00",
"DueDate": "2025-12-14T03:34:47.5968991+00:00"
},
{
"LabelId": 1,
"PackageId": 2,
"Code": "sample string 3",
"DisplayName": "sample string 4",
"Latest": "2025-12-14T03:34:47.5968991+00:00",
"DueDate": "2025-12-14T03:34:47.5968991+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfMT_RegularItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MIS.Data.QueryObject">
<MT_RegularItem>
<Code>sample string 3</Code>
<DisplayName>sample string 4</DisplayName>
<DueDate>2025-12-14T03:34:47.5968991+00:00</DueDate>
<LabelId>1</LabelId>
<Latest>2025-12-14T03:34:47.5968991+00:00</Latest>
<PackageId>2</PackageId>
</MT_RegularItem>
<MT_RegularItem>
<Code>sample string 3</Code>
<DisplayName>sample string 4</DisplayName>
<DueDate>2025-12-14T03:34:47.5968991+00:00</DueDate>
<LabelId>1</LabelId>
<Latest>2025-12-14T03:34:47.5968991+00:00</Latest>
<PackageId>2</PackageId>
</MT_RegularItem>
</ArrayOfMT_RegularItem>