outposts_instances_update
PUT/api/v3//outposts/instances/:uuid/
Outpost Viewset
Request
Path Parameters
A UUID string identifying this Outpost.
- application/json
Body
required
Possible values: non-empty
Possible values: [proxy
, ldap
, radius
, rac
]
Select Service-Connection authentik should use to manage this outpost. Leave empty if authentik should not handle the deployment.
config
object
required
Possible values: non-empty
Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [proxy
, ldap
, radius
, rac
]
providers_obj
object[]
required
Select Service-Connection authentik should use to manage this outpost. Leave empty if authentik should not handle the deployment.
service_connection_obj
object
required
Get Token identifier
config
object
required
Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"type": "proxy",
"providers": [
0
],
"providers_obj": [
{
"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"
}
],
"service_connection": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"service_connection_obj": {
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"local": true,
"component": "string",
"verbose_name": "string",
"verbose_name_plural": "string",
"meta_model_name": "string"
},
"refresh_interval_s": 0,
"token_identifier": "string",
"config": {},
"managed": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT '/api/v3/outposts/instances/:uuid/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"type": "proxy",
"providers": [
0
],
"service_connection": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"config": {},
"managed": "string"
}'