Once you received an access token, you can authorize requests by adding the Authorization header using token_type and access_token provided by the authentication response as value.
Authorization:{TOKEN_TYPE} {ACCESS_TOKEN}
Example
Authorization:Bearer eyJz93a...k4laUWw
If your application requests the Loom AI API with missing, invalid or expired credentials, it will receive a HTTP 401 Unauthorized response.
If your application requests a Loom AI API resource that it is not authorized to access, for example due to a missing authorization scope, it will receive a HTTP 403 Forbidden response.