Skip to main content
GET
/
subscriptions
/
cp
/
api
/
v2
/
data
/
addresses
List saved addresses for the current customer
curl --request GET \
  --url https://www.myshop.com/apps/subscriptions/cp/api/v2/data/addresses
import requests

url = "https://www.myshop.com/apps/subscriptions/cp/api/v2/data/addresses"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://www.myshop.com/apps/subscriptions/cp/api/v2/data/addresses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
const url = 'https://www.myshop.com/apps/subscriptions/cp/api/v2/data/addresses';
const options = {method: 'GET'};

fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://www.myshop.com/apps/subscriptions/cp/api/v2/data/addresses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://www.myshop.com/apps/subscriptions/cp/api/v2/data/addresses"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
require 'uri'
require 'net/http'

url = URI("https://www.myshop.com/apps/subscriptions/cp/api/v2/data/addresses")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
[
  {
    "address1": "<string>",
    "address2": "<string>",
    "city": "<string>",
    "company": "<string>",
    "country": "<string>",
    "firstName": "<string>",
    "formatted": [
      "<string>"
    ],
    "formattedArea": "<string>",
    "get__typename": "<string>",
    "id": "<string>",
    "lastName": "<string>",
    "name": "<string>",
    "phone": "<string>",
    "province": "<string>",
    "provinceCode": "<string>",
    "zip": "<string>"
  }
]

Response

200 - */*

OK

address1
string
address2
string
city
string
company
string
country
string
countryCodeV2
enum<string>
Available options:
AF,
AX,
AL,
DZ,
AD,
AO,
AI,
AG,
AR,
AM,
AW,
AC,
AU,
AT,
AZ,
BS,
BH,
BD,
BB,
BY,
BE,
BZ,
BJ,
BM,
BT,
BO,
BA,
BW,
BV,
BR,
IO,
BN,
BG,
BF,
BI,
KH,
CA,
CV,
BQ,
KY,
CF,
TD,
CL,
CN,
CX,
CC,
CO,
KM,
CG,
CD,
CK,
CR,
HR,
CU,
CW,
CY,
CZ,
CI,
DK,
DJ,
DM,
DO,
EC,
EG,
SV,
GQ,
ER,
EE,
SZ,
ET,
FK,
FO,
FJ,
FI,
FR,
GF,
PF,
TF,
GA,
GM,
GE,
DE,
GH,
GI,
GR,
GL,
GD,
GP,
GT,
GG,
GN,
GW,
GY,
HT,
HM,
VA,
HN,
HK,
HU,
IS,
IN,
ID,
IR,
IQ,
IE,
IM,
IL,
IT,
JM,
JP,
JE,
JO,
KZ,
KE,
KI,
KP,
XK,
KW,
KG,
LA,
LV,
LB,
LS,
LR,
LY,
LI,
LT,
LU,
MO,
MG,
MW,
MY,
MV,
ML,
MT,
MQ,
MR,
MU,
YT,
MX,
MD,
MC,
MN,
ME,
MS,
MA,
MZ,
MM,
NA,
NR,
NP,
NL,
AN,
NC,
NZ,
NI,
NE,
NG,
NU,
NF,
MK,
NO,
OM,
PK,
PS,
PA,
PG,
PY,
PE,
PH,
PN,
PL,
PT,
QA,
CM,
RE,
RO,
RU,
RW,
BL,
SH,
KN,
LC,
MF,
PM,
WS,
SM,
ST,
SA,
SN,
RS,
SC,
SL,
SG,
SX,
SK,
SI,
SB,
SO,
ZA,
GS,
KR,
SS,
ES,
LK,
VC,
SD,
SR,
SJ,
SE,
CH,
SY,
TW,
TJ,
TZ,
TH,
TL,
TG,
TK,
TO,
TT,
TA,
TN,
TR,
TM,
TC,
TV,
UG,
UA,
AE,
GB,
US,
UM,
UY,
UZ,
VU,
VE,
VN,
VG,
WF,
EH,
YE,
ZM,
ZW,
ZZ,
$UNKNOWN
firstName
string
formatted
string[]
formattedArea
string
get__typename
string
id
string
lastName
string
name
string
phone
string
province
string
provinceCode
string
validationResultSummary
enum<string>
Available options:
NO_ISSUES,
ERROR,
WARNING,
$UNKNOWN
zip
string