POST api/GetValidationProviders
POST implementation of GetValidationProviders
Request Information
URI Parameters
None.
Body Parameters
GetValidationProvidersRequest| 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
GetValidationProvidersResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityNo |
The facility number of the target carpark |
integer |
None. |
| ValidationProviders |
The list of available validation providers for the facility |
Collection of ValidationProvider |
None. |
Response Formats
application/json, text/json
Sample:
{
"FacilityNo": 1,
"ValidationProviders": [
{
"ProviderName": "sample string 1",
"ProviderNo": 2
},
{
"ProviderName": "sample string 1",
"ProviderNo": 2
}
]
}