Yes, you can get
- Device Full address
- Country/Region and postal code
You will have to enable Device Address
in developer portal under Permission
tab. Then
you will have to either explicitly grant "resource" access to your skill under Settings menu of your alexa skill or you will have to send a permission card to the user for consent.
Once the permission is granted, fire a GET
request with deviceId
and apiAccessToken
to the specified apiEndpoint
Endpoint for Full Address is: /v1/devices/*deviceId*/settings/address
Country/region & postal code: /v1/devices/*deviceId*/settings/address/countryAndPostalCode
More info here
Hope this helps!