Get status of provider by it's unique ID.
The unique ID of trunk.
Success
Trunk status includes:
ONLINE
OFFLINE
const response = await fetch('http://127.0.0.1:8888/api/providers/{id}/status', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": "ONLINE" }