Get trail link share
GET
/api/v1/trail-link-share/{id}
const url = 'https://example.com/api/v1/trail-link-share/example';const options = {method: 'GET'};
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/trail-link-share/exampleRetrieves a trail link share by ID
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Query Parameters
Section titled “Query Parameters”expand
string
Responses
Section titled “Responses”TrailLinkShare
Not Found
Internal Server Error