Update the OIDC session configuration for the tenant. This method performs a partial update. If the configuration does not exist, it will be created.
PATCH
/api/configs/oidc/session
curl \
--request PATCH 'https://[tenant_id].logto.app/api/configs/oidc/session' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"ttl":42.0}'
Request examples
{
"ttl": 42.0
}
Response examples (200)
{
"ttl": 42.0
}