WORKSPACE_ID ? from where i get it?

1- i contact support and ask them to connect my adobe id to my account and they successfully made it , while in List user roles for account API request i get " “adobe_user_id”: null, " i don’t know why " screenshot included

so is it okay ? i don’t know

2- “links”: {
“next”: null

i think from here i get " workspace id / my projects id available right ?

as in example in the documentation :

if not , whats the endpoint i get from it workspace id , or where ?
as project id i can get it from the ui , where i can get workspace id ?

hi @1Gemy the order of operations would be GET https://api.frame.io/v4/accounts then find the account_id you wish to use, then GET https://api.frame.io/v4/accounts/{account_id}/workspaces using the account_id from the first step.

If you wanted to get the project_id, you would then do GET https://api.frame.io/v4/accounts/{account_id}/workspaces/{workspace_id}/projects using your account_id & workspace_id from previous steps.

Hope this helps!