/resource-positions/{ResourceIdentifier}#resourceType
http://api.iotwireless.{region}.amazonaws.com/resource-positions/{ResourceIdentifier}#resourceTypeGet the position information for a given wireless device or a wireless gateway resource. The position information uses the <a href="https://gisgeography.com/wgs84-world-geodetic-system/"> World Geodetic System (WGS84)</a>.
Path Parameters
The identifier of the resource for which position information is retrieved. It can be the wireless device ID or the wireless gateway ID, depending on the resource type.
Query Params
The type of resource for which position information is retrieved, which can be a wireless device or a wireless gateway.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request GET \2 --url 'http://api.iotwireless.{region}.amazonaws.com/resource-positions/{ResourceIdentifier}#resourceType' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}