Accessing REST API using Access Token

To access the device's REST API, you need to use the access token that you acquired in Acquiring the Access Token as the Bearer token.

1. Include the access token in the Authorization header when accessing the device's (e.g., "SBC manager") REST API endpoints:
GET https://<sbc_manager>/api/v1/status
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIs...
2. If you need to send multiple REST API requests, use the session cookie returned in the response to the first request, in the next requests.