Radius Attributes
Retrieve a Radius Attribute List.
The ID of a MFA for which to retrieve the Radius Attribute.
Success
Unauthorized
Not Found
GET /api/MFA/{id}/RadiusAttr HTTP/1.1
Host:
Accept: */*
{
"vendorID": 1,
"attributeID": 1,
"attributeType": [
"0 = Number",
"1 = String",
"2 = IP",
"3 = Time"
],
"radiusAttrName": "text",
"vendor": "text",
"value": "text"
}
Add a new Radius Attribute.
MFA settings
Add MFA RADIUS attribute
RADIUS attribute vendor ID
RADIUS attribute ID
RADIUS attribute value The value has many forms:IP, Number, String, and Time. When setting the time it is expected that the time value is in epoch time.
RADIUS attribute name
RADIUS attribute vendor name
RADIUS attribute type
Created
Unauthorized
Conflict
POST /api/MFA/{id}/RadiusAttr HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 149
{
"vendorID": 1,
"attributeID": 1,
"value": "text",
"radiusAttrName": "text",
"vendor": "text",
"attributeType": [
"0 = Number",
"1 = String",
"2 = IP",
"3 = Time"
]
}
{
"vendorID": 1,
"attributeID": 1,
"attributeType": [
"0 = Number",
"1 = String",
"2 = IP",
"3 = Time"
],
"radiusAttrName": "text",
"vendor": "text",
"value": "text"
}
Delete a Radius Attribute from a site.
The ID of a RadiusAttr to remove from the site.
RADIUS attribute vendor ID
RADIUS attribute ID
RADIUS attribute value The value has many forms:IP, Number, String, and Time. When setting the time it is expected that the time value is in epoch time.
RADIUS attribute name
RADIUS attribute vendor name
RADIUS attribute type
No Content
Unauthorized
Not Found
DELETE /api/MFA/{id}/RadiusAttr HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 149
{
"vendorID": 1,
"attributeID": 1,
"value": "text",
"radiusAttrName": "text",
"vendor": "text",
"attributeType": [
"0 = Number",
"1 = String",
"2 = IP",
"3 = Time"
]
}
No content
Last updated
Was this helpful?