Localizei esse documentação mas nada de retorno via REST
https://shopify.dev/tutorials/get-a-tax-id-using-localization-extensions
{
order(id: "gid://shopify/Order/1") {
id
localizationExtensions(first: 5) {
edges {
node {
countryCode
purpose
title
value
}
}
}
}
}
Retorno
{
"data": {
"order": {
"id": "gid://shopify/Order/1",
"localizationExtensions": {
"edges": [
{
"node": {
"countryCode": "BR",
"purpose": "TAX",
"title": "CPF/CNPJ",
"value": "39053344705"
}
}
]
}
}
}
}
/ Response