Get the full path of an entity
GET
/v1/entities/{id}/path
const url = 'https://example.com/api/v1/entities/example/path';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/entities/example/path \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Entity ID
Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
id
string
name
string
type
string
Example
[ { "type": "location" }]