Get all comparision versions of all project files
GEThttps://data-v2.novorender.com/projects/:projectId/compares
Require admin rights
Request
Path Parameters
projectId stringrequired
Responses
- 200
- 401
- 404
- 500
OK
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
id stringnullable
fileId stringnullable
from int32
to int32
status stringnullable
start date-timenullable
end date-timenullable
path string[]
parents string[]
[
{
"id": "string",
"fileId": "string",
"from": 0,
"to": 0,
"status": "string",
"start": "2024-07-29T15:51:28.071Z",
"end": "2024-07-29T15:51:28.071Z",
"path": [
"string"
],
"parents": [
"string"
]
}
]
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