-
Notifications
You must be signed in to change notification settings - Fork 27
Verify Shipping Address
Revadike edited this page Feb 24, 2022
·
2 revisions
No known rate limit
Authenticated: Yes
Method:
GETHost:
store.steampowered.comPath:
/api/verifyshippingaddress/Query Parameters:
Name Type Required Description ccstring TODOCountry code lstring TODOLanguage
Name Type Description successnumber TODOcorrectedAddressobject TODOcorrectedAddress.address1object TODOcorrectedAddress.address1.matchesboolean TODOcorrectedAddress.address1.valuestring TODOcorrectedAddress.address2object TODOcorrectedAddress.address2.matchesboolean TODOcorrectedAddress.address2.valuestring TODOcorrectedAddress.cityobject TODOcorrectedAddress.city.matchesboolean TODOcorrectedAddress.city.valuestring TODOcorrectedAddress.stateobject TODOcorrectedAddress.state.matchesboolean TODOcorrectedAddress.state.valuestring TODOcorrectedAddress.postcodeobject TODOcorrectedAddress.postcode.matchesboolean TODOcorrectedAddress.postcode.valuestring TODOverificationDetailExamplestring TODObSuggestedAddressMatchesboolean TODObValidAddressboolean TODOeShippingAddressVerificationDetailnumber TODO
GET https://store.steampowered.com/api/verifyshippingaddress/?cc=us&l=english
{
"success": 1,
"correctedAddress": {
"address1": {
"matches": true,
"value": ""
},
"address2": {
"matches": true,
"value": ""
},
"city": {
"matches": true,
"value": ""
},
"state": {
"matches": true,
"value": ""
},
"postcode": {
"matches": true,
"value": ""
}
},
"verificationDetailExample": "",
"bSuggestedAddressMatches": true,
"bValidAddress": false,
"eShippingAddressVerificationDetail": 4
}