core_transactional_applications_update
PUT/api/v3//core/transactional/applications/
Convert data into a blueprint, validate it and apply it
Request
- application/json
Body
required
app
object
required
provider_model ProviderModelEnum (string)required
Possible values: [authentik_providers_google_workspace.googleworkspaceprovider
, authentik_providers_ldap.ldapprovider
, authentik_providers_microsoft_entra.microsoftentraprovider
, authentik_providers_oauth2.oauth2provider
, authentik_providers_proxy.proxyprovider
, authentik_providers_rac.racprovider
, authentik_providers_radius.radiusprovider
, authentik_providers_saml.samlprovider
, authentik_providers_scim.scimprovider
]
provider
object
required
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
applied booleanrequired
logs string[]required
{
"applied": true,
"logs": [
"string"
]
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
property name* any
Validation Error
{
"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 PUT '/api/v3/core/transactional/applications/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"app": {
"name": "string",
"slug": "string",
"provider": 0,
"backchannel_providers": [
0
],
"open_in_new_tab": true,
"meta_launch_url": "string",
"meta_description": "string",
"meta_publisher": "string",
"policy_engine_mode": "all",
"group": "string"
},
"provider_model": "authentik_providers_google_workspace.googleworkspaceprovider",
"provider": {
"name": "string",
"property_mappings": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"property_mappings_group": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"delegated_subject": "[email protected]",
"credentials": {},
"scopes": "string",
"exclude_users_service_account": true,
"filter_group": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"user_delete_action": "do_nothing",
"group_delete_action": "do_nothing",
"default_group_email_domain": "string"
}
}'