Get specific edge server details by its ID
/api/v1/edges/{edge_id}
API to retrieve a specific edge server's details by its ID. Refer to Edge Server for more information about the edge object.
Access Token
is required.
Refer to Authentication for more information.
{
"id": "string",
"name": "string",
"description": "string",
"status": "enum(active | inactive)",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
const response = await fetch('https://api.example.com/v1/edges/edge_123?id=edge_123', {
method: 'GET',
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});
const data = await response.json();
Unique identifier of the edge server