Skip to main content

Get organizations access

GET 

https://data-v2.novorender.com/roles/organization-access-list

Get the list of organizations the logged-in user has SPECIFIC access to

Responses

OK
Schema
    all boolean
    ids string[]nullable

Authorization: oauth2

name: oauth2type: oauth2flows: {
  "authorizationCode": {
    "authorizationUrl": "https://auth.novorender.com/auth",
    "tokenUrl": "https://auth.novorender.com/token",
    "scopes": {}
  }
}
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://data-v2.novorender.com/roles/organization-access-list");
request.Headers.Add("Accept", "text/plain");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://data-v2.novorender.com
Auth
ResponseClear

Click the Send API Request button above and see the response here!