Get Site Ciphers (v2.0)
GET/v2.0/api/tenants/:tenant_id/sites/:site_id/siteciphers
List the ciphers for a particular site.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
site_id stringrequired
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
- Array [
- ]
count int32
The total number.
id string
The ID.
items SiteCipher[]
controller_connection_cipher stringrequired
Possible values: [RSA-AES256-GCM-SHA384
, RSA-AES128-GCM-SHA256
]
The ciphers for controller connections.
id string
The ID.
site_id stringrequired
The ID of the site.
tenant_id stringrequired
The tenant ID.
vpn_ciphers string[]required
The ciphers for the vpn connections.
{
"count": 0,
"id": "string",
"items": [
{
"controller_connection_cipher": "RSA-AES256-GCM-SHA384",
"id": "string",
"site_id": "string",
"tenant_id": "string",
"vpn_ciphers": [
"string"
]
}
]
}
Loading...