When I am hitting the API to get Data of an order. I am getting different key which is not in the documentation.
For reference inside shipping_information object it is included in the documentation
“shipping_information”: {
“company”: “string”,
“country_code”: “string”,
“first_name”: “string”,
“last_name”: “string”,
“line1”: “string”,
“line2”: “string”,
“locality”: “string”,
“middle_name”: “string”,
“phone”: “string”,
“region”: “string”,
“zip_code”: “string”,
“zip_four”: “string”
}
But when I have hit the API instead of line1 and line2 we’re getting street1, street2, zip. And also we’re not getting locality.
“shipping_information”: {
“id”: 16,
“first_name”: “”,
“middle_name”: null,
“last_name”: “”,
“company”: “”,
“phone”: “”,
“street1”: “”,
“street2”: “”,
“city”: “”,
“state”: “”,
“zip”: “”,
“country”: “”
}
Please resolve this issue.