Skip to main content

Update Auth Org Session Configuration

PATCH 

/auth-org/session-config

This API updates an existing session configuration for an org using PATCH.

Request

Body

array

required

A list of auth org session configuration update operations according to the JSON Patch standard. Ensures that the patched Session Config conforms to certain logical guidelines, which are:

  1. maxSessionTime >= 1 && maxSessionTime < 10080 (1 week)

  2. maxIdleTime >= 1 && maxIdleTime < 1440 (1 day)

  3. maxSessionTime must have a greater duration than maxIdleTime.

  • Array [

  • op stringrequired

    Possible values: [add, remove, replace, move, copy, test]

    The operation to be performed

    path stringrequired

    A string JSON Pointer representing the target path to an element to be affected by the operation

    value

    object

    The value to be used for the operation, required for "add" and "replace" operations

    oneOf

    string

  • ]

Responses

Updated Auth Org session configuration.

Schema

    maxIdleTime int32

    The maximum time in minutes a session can be idle.

    rememberMe boolean

    Denotes if 'remember me' is enabled.

    maxSessionTime int32

    The maximum allowable session time in minutes.

Loading...