Get organizations access
GEThttps://data-v2.novorender.com/roles/organization-access-list
Get the list of organizations the logged-in user has SPECIFIC access to
Responses
- 200
- 401
- 500
OK
- text/plain
- application/json
- text/json
- Schema
- Example (auto)
Schema
all boolean
ids string[]nullable
{
"all": true,
"ids": [
"string"
]
}
- Schema
- Example (auto)
Schema
all boolean
ids string[]nullable
{
"all": true,
"ids": [
"string"
]
}
- Schema
- Example (auto)
Schema
all boolean
ids string[]nullable
{
"all": true,
"ids": [
"string"
]
}
Unauthorized
Internal Server Error
Authorization: oauth2
name: oauth2type: oauth2flows: {
"authorizationCode": {
"authorizationUrl": "https://auth.novorender.com/auth",
"tokenUrl": "https://auth.novorender.com/token",
"scopes": {}
}
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear