-
Notifications
You must be signed in to change notification settings - Fork 18
Verify Shipping Address
Revadike edited this page Feb 24, 2022
·
2 revisions
No known rate limit
Authenticated: Yes
Method:
GET
Host:
store.steampowered.com
Path:
/api/verifyshippingaddress/
Query Parameters:
Name Type Required Description cc
string TODO
Country code l
string TODO
Language
Name Type Description success
number TODO
correctedAddress
object TODO
correctedAddress.address1
object TODO
correctedAddress.address1.matches
boolean TODO
correctedAddress.address1.value
string TODO
correctedAddress.address2
object TODO
correctedAddress.address2.matches
boolean TODO
correctedAddress.address2.value
string TODO
correctedAddress.city
object TODO
correctedAddress.city.matches
boolean TODO
correctedAddress.city.value
string TODO
correctedAddress.state
object TODO
correctedAddress.state.matches
boolean TODO
correctedAddress.state.value
string TODO
correctedAddress.postcode
object TODO
correctedAddress.postcode.matches
boolean TODO
correctedAddress.postcode.value
string TODO
verificationDetailExample
string TODO
bSuggestedAddressMatches
boolean TODO
bValidAddress
boolean TODO
eShippingAddressVerificationDetail
number 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
}