policies_all_types_list
GET/api/v3//policies/all/types/
Get all creatable types
Responses
- 200
 - 400
 - 403
 
- application/json
 
- Schema
 - Example (from schema)
 
Schema
Array [
]
name stringrequired
description stringrequired
component stringrequired
model_name stringrequired
icon_url string
requires_enterprise boolean
Default value: 
false[
  {
    "name": "string",
    "description": "string",
    "component": "string",
    "model_name": "string",
    "icon_url": "string",
    "requires_enterprise": false
  }
]
- application/json
 
- Schema
 - Example (from schema)
 
Schema
non_field_errors string[]
code string
property name* any
Validation Error
{
  "non_field_errors": [
    "string"
  ],
  "code": "string"
}
- application/json
 
- Schema
 - Example (from schema)
 
Schema
detail stringrequired
code string
{
  "detail": "string",
  "code": "string"
}
Authorization: http
name: authentiktype: httpscheme: bearer
- 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.Get, "/api/v3/policies/all/types/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());