вы можете использовать эти методы, чтобы получить информацию о себе (я предполагаю, что вы вошли в систему как клиент)
Получить адреса по умолчанию биллингом для данного CUSTOMERID:
GET http://Magento-2-0/index.php/rest/V1/customers/me/billingAddress
Retrieve адрес доставки по умолчанию данный заказчик:
GET http://Magento-2-0/index.php/rest/V1/customers/me/shippingAddress
Чтобы получить общую информацию о клиенте, вы должны использовать:
GET http://Magento-2-0/index.php/rest/V1/customers/me
реакция должна быть что-то вроде:
{
"id": 0,
"groupId": 0,
"defaultBilling": "string",
"defaultShipping": "string",
"confirmation": "string",
"createdAt": "string",
"updatedAt": "string",
"createdIn": "string",
"dob": "string",
"email": "string",
"firstname": "string",
"lastname": "string",
"middlename": "string",
"prefix": "string",
"suffix": "string",
"gender": 0,
"storeId": 0,
"taxvat": "string",
"websiteId": 0,
"addresses": [
{
"id": 0,
"customerId": 0,
"region": {
"regionCode": "string",
"region": "string",
"regionId": 0,
"extensionAttributes": {}
},
"regionId": 0,
"countryId": "string",
"street": [
"string"
],
"company": "string",
"telephone": "string",
"fax": "string",
"postcode": "string",
"city": "string",
"firstname": "string",
"lastname": "string",
"middlename": "string",
"prefix": "string",
"suffix": "string",
"vatId": "string",
"defaultShipping": true,
"defaultBilling": true,
"extensionAttributes": {},
"customAttributes": [
{
"attributeCode": "string",
"value": "string"
}
]
}
],
"disableAutoGroupChange": 0,
"extensionAttributes": {},
"customAttributes": [
{
"attributeCode": "string",
"value": "string"
}
]
}
Каждый вызов должен иметь заголовок "Авторизация": "Знаменосец лексема"
какие детали вы интересно? – burzhuy