Get information about a specific microphone device by its ID
/api/v1/mics/{mic_id}
API to retrieve detailed information about a specific microphone device by its ID. Refer to the Mic Device Object for more details.
Access Token
is required via Bearer token authentication.
Refer to the Authentication section for more details.
{
"data": {
"id": "string",
"name": "string",
"edge_id": "string",
"location": {
"latitude": -90,
"longitude": -180
},
"status": "active",
"metadata": {
"model": "string",
"firmware_version": "string",
"custom_data": {}
},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
}
const response = await fetch('https://openapi.deeplyinc.com/api/v1/mics/mic_123', {
method: 'GET',
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});
const data = await response.json();
Unique identifier of the microphone device