providers_proxy_list
GET/api/v3//providers/proxy/
ProxyProvider Viewset
Request
Query Parameters
application__isnull boolean
authorization_flow__slug__iexact string
basic_auth_enabled__iexact boolean
basic_auth_password_attribute__iexact string
basic_auth_user_attribute__iexact string
certificate__kp_uuid__iexact uuid
certificate__name__iexact string
cookie_domain__iexact string
external_host__iexact string
internal_host__iexact string
internal_host_ssl_validation__iexact boolean
mode__iexact string
name__iexact string
ordering string
Which field to use when ordering the results.
page integer
A page number within the paginated result set.
page_size integer
Number of results to return per page.
property_mappings__iexact uuid[]
redirect_uris__iexact string
search string
A search term.
skip_path_regex__iexact string
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
pagination
object
required
results
object[]
required
{
"pagination": {
"next": 0,
"previous": 0,
"count": 0,
"current": 0,
"total_pages": 0,
"start_index": 0,
"end_index": 0
},
"results": [
{
"pk": 0,
"name": "string",
"authentication_flow": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"authorization_flow": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"property_mappings": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"component": "string",
"assigned_application_slug": "string",
"assigned_application_name": "string",
"assigned_backchannel_application_slug": "string",
"assigned_backchannel_application_name": "string",
"verbose_name": "string",
"verbose_name_plural": "string",
"meta_model_name": "string",
"client_id": "string",
"internal_host": "string",
"external_host": "string",
"internal_host_ssl_validation": true,
"certificate": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"skip_path_regex": "string",
"basic_auth_enabled": true,
"basic_auth_password_attribute": "string",
"basic_auth_user_attribute": "string",
"mode": "proxy",
"intercept_header_auth": true,
"redirect_uris": "string",
"cookie_domain": "string",
"jwks_sources": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"access_token_validity": "string",
"refresh_token_validity": "string",
"outpost_set": [
"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/providers/proxy/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'