admin_apps_list
GET/api/v3//admin/apps/
Read-only view list all installed apps
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
name stringrequired
label stringrequired
[
{
"name": "string",
"label": "string"
}
]
- 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/admin/apps/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'