All pages
Powered by GitBook
1 of 1

Loading...

Devices

List

get

Retrieve Criteria Device List of a session server with the specified ID.

Path parameters
idinteger · int32Required

The ID of a session server for which to retrieve the Criteria settings.

Responses
200

Success

application/json; api-version=1.0
401

Unauthorized

application/json; api-version=1.0
404

Not Found

application/json; api-version=1.0
get
/api/MFA/{id}/Criteria/Devices
GET /api/MFA/{id}/Criteria/Devices HTTP/1.1
Host: 
Accept: */*
[
  {
    "client": "text"
  }
]

Add

post

Add a device to the Device List of the Criteria settings.

Path parameters
idinteger · int32Required

The ID of a session server for which to modify the Criteria settings.

Body

Add a client device to the Criteria Devices list

clientDeviceNamestring | nullableRequired

The name of the client device to add to the Criteria.

Responses
201

Created

401

Unauthorized

application/json; api-version=1.0
404

Not Found

application/json; api-version=1.0
409

Conflict

application/json; api-version=1.0
post
/api/MFA/{id}/Criteria/Devices
POST /api/MFA/{id}/Criteria/Devices HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 27

{
  "clientDeviceName": "text"
}

No content

Remove

delete

Remove a device from the Device List of the Criteria settings.

Path parameters
idinteger · int32Required

The ID of a session server for which to modify the Criteria settings.

Body

Remove a client device from the Criteria Devices list

clientDeviceNamestring | nullableRequired

The name of the client device to remove from the Criteria.

Responses
204

No Content

401

Unauthorized

application/json; api-version=1.0
404

Not Found

application/json; api-version=1.0
delete
/api/MFA/{id}/Criteria/Devices
DELETE /api/MFA/{id}/Criteria/Devices HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 27

{
  "clientDeviceName": "text"
}

No content