Update project's clash settings
PATCHhttps://data-v2.novorender.com/projects/:projectId/clash
Require admin rights
Request
Responses
- 202
- 304
- 401
- 404
- 409
- 500
Accepted
Not Modified
Unauthorized
Not Found
Conflict
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.Patch, "https://data-v2.novorender.com/projects/:projectId/clash");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var content = new StringContent("", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear