POST api/GetArticles
POST implementation of GetValidationProviders
Request Information
URI Parameters
None.
Body Parameters
GetArticlesRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey |
An active API Key for the APT.MobileAPI service |
string |
None. |
| FacilityNo |
The facility number of the target carpark |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"APIKey": "sample string 1",
"FacilityNo": 2
}
Response Information
Resource Description
GetArticlesResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityNo |
The facility number of the target carpark |
integer |
None. |
| Articles |
The list of available validation providers for the facility |
Collection of Article |
None. |
Response Formats
application/json, text/json
Sample:
{
"FacilityNo": 1,
"Articles": [
{
"CardSystem": "sample string 1",
"ArticleCode": "sample string 2",
"ArticleNo": 3,
"Designation": "sample string 4"
},
{
"CardSystem": "sample string 1",
"ArticleCode": "sample string 2",
"ArticleNo": 3,
"Designation": "sample string 4"
}
]
}