Share

v3 API Authorization Tutorial

1. Create an Application

  1. Sign in to the Autodesk Forge Platform.
  2. Read the overview of the Forge platform.
  3. Create an application.
  4. Request a 3-legged token with Grant Type set to Authorization Code.




2. Call the Fusion Lifecycle REST v3 API Endpoints

When performing a request, add:

  • the Authentication token, in the format “Bearer <your_token_here>”
  • the X-Tenant value (should match the tenant name)
  • the “Accept” header value, if applicable


cURL Example

curl -X GET -H "Authorization: Bearer [your access token]" -H "x-tenant: [your tenant name]" -H "Accept: application/json" -H "Content-Type: application/json" " https://[tenant name].autodeskplm360.net/api/v3/workspaces?unlimited=true

Was this information helpful?