Skip to main content

Get all comparision versions of all project files

GET 

https://data-v2.novorender.com/projects/:projectId/compares

Require admin rights

Request

Path Parameters

    projectId stringrequired

Responses

OK
Schema
  • Array [
  • id stringnullable
    fileId stringnullable
    from int32
    to int32
    status stringnullable
    start date-timenullable
    end date-timenullable
    path string[]
    parents string[]
  • ]

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/projects/:projectId/compares");
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!