Hi!
I’m having trouble making an API request in Postman to retrieve the Workspace ID from Frame.io.
I’ve followed the steps described in the Getting Started Guide https://developer.adobe.com/frameio/guides/#importing-the-postman-collection.
I’ve already created a project in the Adobe Developer Console and added the Frame.io API to it. I’ve also added the credentials associated with the Frame.io project from the Adobe Developer Console to the Authorization tab in Postman and successfully obtained an access token.
Next, I selected the default environment with the required values filled in and tried the following API request to verify that my authorization was successful:
{{BASE_URL}}/v4/me
However, I received a 401 Unauthorized error with the following message:
json
Copy code
{
“errors”: [
{
“title”: “Unauthorized”,
“detail”: “Invalid or missing authorization token”
}
]
}
According to the information in the Help Center, the API is available to all customers and is currently in early access for Frame.io V4. (Note: As of June 3, 2025, the API is available in early access for all customers.)
I’m not sure what I’m doing wrong. Could you help me figure this out?
Thanks in advance!