The following routes are available for this service:
All Verbs /GetParkerStatus Get a Parker’s Status
GetParkerStatusRequest Parameters:
GetParkerStatusResponse Parameters:
HTTP + XML #
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/GetParkerStatusRequest HTTP/1.1
Host: api.parkonect.com
Content-Type: application/xml
Content-Length: length
<GetParkerStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkonectAPI.ServiceModel">
<Barcode>String</Barcode>
<FacilityOperatorID>String</FacilityOperatorID>
<GarageID>0</GarageID>
<Password>String</Password>
<Username>String</Username>
</GetParkerStatusRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<GetParkerStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkonectAPI.ServiceModel">
<CanEnterGarage>false</CanEnterGarage>
<ErrorMessage>String</ErrorMessage>
<Status>String</Status>
</GetParkerStatusResponse>
HTTP + JSON #
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /json/reply/GetParkerStatusRequest HTTP/1.1
Host: api.parkonect.com
Content-Type: application/json
Content-Length: length
{"Username":"String","Password":"String","GarageID":0,"FacilityOperatorID":"String","Barcode":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ErrorMessage":"String","Status":"String","CanEnterGarage":false}
HTTP + JSV #
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/GetParkerStatusRequest HTTP/1.1
Host: api.parkonect.com
Content-Type: text/jsv
Content-Length: length
{
Username: String,
Password: String,
GarageID: 0,
FacilityOperatorID: String,
Barcode: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ErrorMessage: String,
Status: String,
CanEnterGarage: False
}
HTTP + CSV #
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /csv/reply/GetParkerStatusRequest HTTP/1.1
Host: api.parkonect.com
Content-Type: text/csv
Content-Length: length
{"Username":"String","Password":"String","GarageID":0,"FacilityOperatorID":"String","Barcode":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"ErrorMessage":"String","Status":"String","CanEnterGarage":false}
HTTP + SOAP11 #
To override the Content-type in your clients, use the HTTP Accept Header, append the .soap11 suffix or ?format=soap11
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /soap11 HTTP/1.1
Host: api.parkonect.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: GetParkerStatusRequest
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetParkerStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkonectAPI.ServiceModel">
<Barcode>String</Barcode>
<FacilityOperatorID>String</FacilityOperatorID>
<GarageID>0</GarageID>
<Password>String</Password>
<Username>String</Username>
</GetParkerStatusRequest>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetParkerStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkonectAPI.ServiceModel">
<CanEnterGarage>false</CanEnterGarage>
<ErrorMessage>String</ErrorMessage>
<Status>String</Status>
</GetParkerStatusResponse>
</soap:Body>
</soap:Envelope>
HTTP + SOAP12 #
To override the Content-type in your clients, use the HTTP Accept Header, append the .soap12 suffix or ?format=soap12
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /soap12 HTTP/1.1
Host: api.parkonect.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetParkerStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkonectAPI.ServiceModel">
<Barcode>String</Barcode>
<FacilityOperatorID>String</FacilityOperatorID>
<GarageID>0</GarageID>
<Password>String</Password>
<Username>String</Username>
</GetParkerStatusRequest>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetParkerStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkonectAPI.ServiceModel">
<CanEnterGarage>false</CanEnterGarage>
<ErrorMessage>String</ErrorMessage>
<Status>String</Status>
</GetParkerStatusResponse>
</soap12:Body>
</soap12:Envelope>