Address
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
POST /address/autocomplete HTTP/1.1
Host: public-api.alternativepayments.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 51
{
"country": "text",
"q": "text",
"sessiontoken": "text"
}{
"data": [
{
"description": "text",
"place_id": "text",
"structured_formatting": {
"main_text": "text",
"secondary_text": "text"
}
}
]
}POST /address/details HTTP/1.1
Host: public-api.alternativepayments.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 35
{
"id": "text",
"sessiontoken": "text"
}{
"data": {
"result": {
"address_components": [
{
"long_name": "text",
"short_name": "text",
"types": [
"text"
]
}
],
"name": "text"
}
}
}