Get all comparision versions of all project files
GEThttps://data-v2.novorender.com/projects/:projectId/compares
Require admin rights
Request
Responses
- 200
- 401
- 404
- 500
OK
Unauthorized
Not Found
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/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());
ResponseClear