POST v1/MandE/getGenericMandE
Request Information
URI Parameters
None.
Body Parameters
getGenericMandERequest| Name | Description | Type | Additional information |
|---|---|---|---|
| MandEType | tableType |
None. |
Request Formats
application/json, text/json
Sample:
{
"MandEType": 0
}
application/xml, text/xml
Sample:
<getGenericMandERequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ntblcpEWORS.Models.MandE"> <MandEType>screend</MandEType> </getGenericMandERequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
getGenericMandEResult| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| data | Collection of lineItems |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"data": [
{
"state": "sample string 1",
"year": 2,
"month": "sample string 3",
"monthIndex": 4,
"count": 5
},
{
"state": "sample string 1",
"year": 2,
"month": "sample string 3",
"monthIndex": 4,
"count": 5
}
]
}
application/xml, text/xml
Sample:
<getGenericMandEResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ntblcpEWORS.Models.MandE">
<data>
<lineItems>
<count>5</count>
<month>sample string 3</month>
<monthIndex>4</monthIndex>
<state>sample string 1</state>
<year>2</year>
</lineItems>
<lineItems>
<count>5</count>
<month>sample string 3</month>
<monthIndex>4</monthIndex>
<state>sample string 1</state>
<year>2</year>
</lineItems>
</data>
<success>true</success>
</getGenericMandEResult>