Dashboards & Views

Create Or Update View Config

PUT/api/v1/organizations/self/view-configs
Body
path*Path
config*Config
Response

Successful Response

Body
config*Config
Request
const response = await fetch('/api/v1/organizations/self/view-configs', {
    method: 'PUT',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "path": "text"
    }),
});
const data = await response.json();
Response
{}

Get View Config

GET/api/v1/legacy/users/me/view-configs
Query parameters
Response

Successful Response

Body
config*Config
Request
const response = await fetch('/api/v1/legacy/users/me/view-configs?path=text', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{}

Create Or Update View Config

PUT/api/v1/legacy/users/me/view-configs
Body
path*Path
config*Config
Response

Successful Response

Body
config*Config
Request
const response = await fetch('/api/v1/legacy/users/me/view-configs', {
    method: 'PUT',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "path": "text"
    }),
});
const data = await response.json();
Response
{}

Troubleshooting

Troubleshooting

Last updated