Skip to main content

Preview configured view

POST 

https://data-v2.novorender.com/explorer/:sceneId/omega365/configuration/preview-view

Preview configured view

Request

Responses

OK

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.Post, "https://data-v2.novorender.com/explorer/:sceneId/omega365/configuration/preview-view");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var content = new StringContent("{\n \"baseURL\": \"string\",\n \"objectId\": 0,\n \"view\": {\n \"id\": \"string\",\n \"requestedType\": \"View\",\n \"viewOrResourceName\": \"string\",\n \"title\": \"string\",\n \"whereOmegaProp\": \"string\",\n \"whereNrProp\": \"string\",\n \"groupBy\": \"string\",\n \"fields\": [\n {\n \"title\": \"string\",\n \"name\": \"string\",\n \"type\": \"Text\"\n }\n ]\n }\n}", 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
{
  "baseURL": "string",
  "objectId": 0,
  "view": {
    "id": "string",
    "requestedType": "View",
    "viewOrResourceName": "string",
    "title": "string",
    "whereOmegaProp": "string",
    "whereNrProp": "string",
    "groupBy": "string",
    "fields": [
      {
        "title": "string",
        "name": "string",
        "type": "Text"
      }
    ]
  }
}
ResponseClear

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