PUT
/
v1
/
profiles
/
{name}
curl --request PUT \
  --url https://api.anchorbrowser.io/v1/profiles/{name} \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '{
  "description": "Updated profile description.",
  "source": "session",
  "session_id": "550e8400-e29b-41d4-a716-446655440000",
  "store_cache": true
}'
{
  "data": {
    "status": "success"
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

name
string
required

The name of the profile to update.

Example:

"my-profile"

Body

application/json

Response

200
application/json

Profile updated successfully.

The response is of type object.