Skip to main content

Update an address

PUT 

https://api.strata.paloaltonetworks.com/config/objects/v1/addresses/:id

Update an existing address.

Request

Path Parameters

    id uuidrequired

    The UUID of the configuration resource

Body

OK

    anyOf
    oneOf
    ip_netmaskstringrequired

    IP address with or without CIDR notation

    Example: 192.168.80.0/24

Responses

OK

Authorization: http

name: scmTokentype: httpdescription: Strata Cloud Manager APIs authenticate client requests using the 
OAuth 2.0 Client Credentials flow.  Please use the `client_id`, 
`client_secret` values associated with an IAM service account along 
with a scope value of `tsg_id:XXXXXXXXXX`, where `XXXXXXXXXX` is the 
Tenant Service Group (TSG) ID.  The resulting JWT access token should 
be attached to all API calls as a `Bearer` token in the `Authorization` 
header (ex. `Authorization: Bearer tokenstring`).
scheme: bearerbearerFormat: JWT
curl -L -X PUT 'https://api.strata.paloaltonetworks.com/config/objects/v1/addresses/:id' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"name": "string",
"description": "string",
"tag": [
"string"
],
"ip_netmask": "192.168.80.0/24"
}'
Request Collapse all
Base URL
https://api.strata.paloaltonetworks.com/config/objects/v1
Auth
Parameters
— pathrequired
Body
{
  "name": "string",
  "description": "string",
  "tag": [
    "string"
  ],
  "ip_netmask": "192.168.80.0/24"
}
ResponseClear

Click the Send API Request button above and see the response here!