Set Property Tree widget favorite properties for the project
PUThttps://data-v2.novorender.com/explorer/:sceneId/propertytree/favorites
Set Property Tree widget favorite properties for the project
Request
Responses
- 204
- 401
- 403
- 404
- 422
- 500
No Content
Unauthorized
Forbidden
Not Found
Unprocessable Content
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.Put, "https://data-v2.novorender.com/explorer/:sceneId/propertytree/favorites");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var content = new StringContent("[\n {\n \"propertyName\": \"string\"\n }\n]", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear