Settings
Bearer authentication
If exists will return the relevant resource for the tenant ID
""Example: 1008Executed successfully.
Unauthorized
Forbidden
unexpected error
unexpected error
GET /api/v1/security/settings HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"autoRedirectSSO": {
"value": {
"enabled": false,
"idpAlias": "oidc"
},
"displayName": "Auto Redirect SSO",
"description": "Automatically redirect users to the SSO login page after logging in to the application"
},
"browserSessionTimeout": {
"value": {
"idleTimeout": 0
},
"displayName": "Browser Session Timeout",
"description": "The idle timeout duration in minutes for browser sessions"
},
"logoutRedirectUri": {
"value": {
"uri": "https://example.com/logout-success"
},
"displayName": "Logout Redirect URI",
"description": "The URI where users will be redirected after logging out of the application"
}
}Bearer authentication
The settings key
If exists will return the relevant resource for the tenant ID
""Example: 1008Executed successfully.
Bad request.
Unauthorized
Forbidden
The specified resource was not found
unexpected error
unexpected error
GET /api/v1/security/settings/{key} HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"value": {
"enabled": false,
"idpAlias": "oidc"
},
"displayName": "Auto Redirect SSO",
"description": "Automatically redirect users to the SSO login page after logging in to the application"
}Bearer authentication
The settings key
If exists will return the relevant resource for the tenant ID
""Example: 1008Setting successfully updated
No content
Bad request.
Unauthorized
Forbidden
The specified resource was not found
unexpected error
unexpected error
PUT /api/v1/security/settings/{key} HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 35
{
"enabled": false,
"idpAlias": "oidc"
}No content
Bearer authentication
If exists will return the relevant resource for the tenant ID
""Example: 1008Executed successfully.
Bad request.
Unauthorized
Forbidden
unexpected error
unexpected error
GET /api/v1/authorization/settings HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"enableScopedAuthorization": {
"enabled": false
},
"tenantIsCspManaged": {
"enabled": false
}
}Bearer authentication
The settings key
If exists will return the relevant resource for the tenant ID
""Example: 1008Executed successfully.
Bad request.
Unauthorized
Forbidden
The specified resource was not found
unexpected error
unexpected error
GET /api/v1/authorization/settings/{key} HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"enabled": false
}Bearer authentication
The settings key
If exists will return the relevant resource for the tenant ID
""Example: 1008Setting successfully updated
No content
Bad request.
Unauthorized
Forbidden
The specified resource was not found
unexpected error
unexpected error
PUT /api/v1/authorization/settings/{key} HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"enabled": false
}No content
Last updated