sources_all_user_settings_list
GET/api/v3//sources/all/user_settings/
Get all sources the user can configure
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
object_uid stringrequired
component stringrequired
title stringrequired
configure_url string
icon_url string
[
{
"object_uid": "string",
"component": "string",
"title": "string",
"configure_url": "string",
"icon_url": "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/sources/all/user_settings/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'