Skip to main content

Update project's clash settings

PATCH 

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

Require admin rights

Request

Responses

Accepted

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.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());
Request Collapse all
Base URL
https://data-v2.novorender.com
Auth
Parameters
— pathrequired
Body

ResponseClear

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