Skip to main content

Get deviations for the project

GET 

https://data-v2.novorender.com/explorer/:sceneId/deviations

Get deviations for the project

Request

Path Parameters

    sceneId stringrequired

Responses

OK
Schema

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/explorer/:sceneId/deviations");
request.Headers.Add("Accept", "application/json");
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
Parameters
— pathrequired
ResponseClear

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