Skip to main content

Patch a specified Auth Profile

PATCH 

/auth-profiles/:id

This API updates an existing Auth Profile. The following fields are patchable: offNetwork, untrustedGeography, applicationId, applicationName, type

Request

Path Parameters

    id stringrequired

    ID of the Auth Profile to patch.

Body

arrayrequired
  • 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

Responds with the Auth Profile as updated.

Schema
    name string

    Authentication Profile name.

    offNetwork boolean

    Default value: false

    Use it to block access from off network.

    untrustedGeography boolean

    Default value: false

    Use it to block access from untrusted geoographies.

    applicationId string

    Application ID.

    applicationName string

    Application name.

    type string

    Possible values: [BLOCK, MFA, NON_PTA, PTA]

    Type of the Authentication Profile.

    strongAuthLogin boolean

    Default value: false

    Use it to enable strong authentication.

Loading...