Get Site Ciphers (v2.0)
List the ciphers for a particular site.
Path Parameters
- tenant_id string required
The tenant ID.
- site_id string required
ID of the site. More details on the site can be retrieved by querying the sites API.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- count int32
The total number of responses.
- id string
The ID of the response.
- type string
The type of response.
items SiteCipher[]
Array [controller_connection_cipher string requiredPossible values: [
RSA-AES256-GCM-SHA384
,RSA-AES128-GCM-SHA256
]The ciphers for controller connections.
id stringThe ID.
site_id string requiredThe ID of the site.
tenant_id string requiredTenant Id: NotNull Digits(fraction = 0, integer = 20, TENANT_ID_INVALID_0001)
vpn_ciphers string[] requiredThe ciphers for the vpn connections.
]
{
"count": 0,
"id": "string",
"type": "string",
"items": [
{
"controller_connection_cipher": "RSA-AES256-GCM-SHA384",
"id": "string",
"site_id": "string",
"tenant_id": "string",
"vpn_ciphers": [
"string"
]
}
]
}
Loading...