HTTP + XML
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /xml/reply/ValidateProfile HTTP/1.1
Host: parkmobile.us
Content-Type: application/xml
Content-Length: length
<ValidateProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:parkmobile:phonixx:api:v1">
<BillingZipCode>
<Country>String</Country>
<ZipCode>String</ZipCode>
</BillingZipCode>
<Email>String</Email>
<Mobile>String</Mobile>
<Password>String</Password>
<Username>String</Username>
<WalletZipCode>
<Country>String</Country>
<ZipCode>String</ZipCode>
</WalletZipCode>
</ValidateProfile>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<ValidateProfileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:parkmobile:phonixx:api:v1">
<ErrorBillingZipCode>String</ErrorBillingZipCode>
<ErrorEmail>String</ErrorEmail>
<ErrorMobile>String</ErrorMobile>
<ErrorPassword>String</ErrorPassword>
<ErrorWalletZipCode>String</ErrorWalletZipCode>
<Username>String</Username>
<Valid>false</Valid>
</ValidateProfileResponse>