Zero TrustZero Trust Connectivity Settings

Updates the Zero Trust Connectivity Settings

PATCH
Updates the Zero Trust Connectivity Settings for the given account.

Path parameters

account_identifierstringRequired
Cloudflare account ID

Request

This endpoint expects an object.
icmp_proxy_enabled
booleanOptional
A flag to enable the ICMP proxy for the account network.
offramp_warp_enabled
booleanOptional
A flag to enable WARP to WARP traffic.

Response

This endpoint returns an object
errors
list of objects
messages
list of objects
success
boolean
Whether the API call was successful
result
objectOptional
PATCH
1curl -X PATCH https://api.cloudflare.com/client/v4/accounts/699d98642c564d2e855e9661899b7252/zerotrust/connectivity_settings \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "icmp_proxy_enabled": true,
6 "offramp_warp_enabled": true
7}'
200Updated
1{
2 "errors": [
3 {
4 "code": 1,
5 "message": "string"
6 }
7 ],
8 "messages": [
9 {
10 "code": 1,
11 "message": "string"
12 }
13 ],
14 "success": true,
15 "result": {
16 "icmp_proxy_enabled": true,
17 "offramp_warp_enabled": true
18 }
19}