Delete a Site (v4.6)
DELETE/v4.6/api/tenants/:tenant_id/sites/:site_id
Delete a particular site.
Request
Path Parameters
The tenant ID.
ID of the site. More details on the site can be retrieved by querying the sites API.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
address Address
The address of the site.
The name of the city. Max size = 100.
The name of the country. Max size = 100.
The postal code. Max size = 100.
The name of the state. Max size = 100.
The name of the street. Max size = 100.
The name of the street. Max size = 100.
The site mode of operation, can be in one of three states: Active - the site is in Control mode and network policy is applied. Monitor - the site is in Analytics mode, no network policy is applied. Disabled: the site is disabled.
Description for the site (Max size = 1024).
This attribute describes the type i.e. SPOKE or HUB.
extended_tags ExtendedTag[]
Extended tags allow operators to add more information into the site object. Current extended tags allow for additional configuration related to Prisma Access and ZScaler to be added.
Key
Value
Value Type
The ID.
location Location
The geographical cordinates for the site address.
The decsription of the location.
The latitude of the location. Max range = 90.
The longitude of the location. Max range = 180.
The site name (Max size = 128).
ID for the NAT Policyset Stack. Can be retrieved using natpolicysetstack API.
The ID for the Path Policyset Stack. Can be retrieved using networkpolicysetstack API.
The ID for the Original Network Policy Set. Can be retrieved using policysets API.
ID for the QoS Policyset Stack. Can be retrieved using prioritypolicysetstack API.
The ID for the Original Security Policy Set. Can be retrieved using securitypolicysets API.
Security Policysetstack Id
Bind a site to a set of domains. Can be retrieved using sericebindingmaps API.
A information field that can be added to identify the site.
{
"address": {
"city": "string",
"country": "string",
"post_code": "string",
"state": "string",
"street": "string",
"street2": "string"
},
"admin_state": "string",
"element_cluster_role": "string",
"extended_tags": [
{
"key": "string",
"value": "string",
"value_type": "string"
}
],
"id": "string",
"location": {
"latitude": 0,
"longitude": 0
},
"name": "string",
"nat_policysetstack_id": "string",
"network_policysetstack_id": "string",
"policy_set_id": "string",
"priority_policysetstack_id": "string",
"security_policyset_id": "string",
"security_policysetstack_id": "string",
"service_binding": "string",
"tags": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "SITE_NOT_FOUND"
},
{
"code": "UNKNOWN_SITE"
},
{
"code": "DELETE_FORBIDDEN_INVALID_STATE"
},
{
"code": "DELETE_FORBIDDEN_SITE_WAN_EXISTS"
},
{
"code": "DELETE_FORBIDDEN_SITE_WAN_LQM_CONFIG_EXISTS"
},
{
"code": "DELETE_FORBIDDEN_ELEMENT_EXISTS"
},
{
"code": "SITE_CONFIG_DELETE_NOTALLOWED_SERVICEENDPOINT_EXISTS"
}
]
}
}