providers_all_types_list
GET/api/v3//providers/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
[
{
"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
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/api/v3/providers/all/types/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'