Step 4: Use access token for REST API requests

đŸ“˜

Note

Authentication endpoints are not being deprecated. These endpoints remain the same and use v1 in the endpoint URLs, as documented.

Prerequisites

Use token for REST API requests

You can now use the token for making REST API requests in one of the following ways:

  1. Pass the token as a query parameter
GET
https://api.miro.com/v1/oauth-token?access_token=replace_with_actual_access_token
  1. Pass the token in the Authorization header
GET
https://api.miro.com/v1/oauth-token
Authorization: Bearer replace_with_actual_access_token

đŸ“˜

Notes

  1. Authentication endpoints are not being deprecated. These endpoints remain the same and use v1 in the endpoint URLs, as documented.

  2. If you haven't enabled the expire user authorization token feature, the token will continue functioning until the user uninstalls your app from the team. If you enabled the expire user authorization token feature, the access token expires in 1 hour and the refresh token expires in 60 days.