Set proxy comments

POST https://geonix.com/personal/api/v1/{apiKey}/proxy/comment/set

This endpoint allows you to add comments to your proxies. This is a convenient way to add notes or tags to them for easier management and organization.

Headers

Name
Value

Content-Type

application/json

Path parameters

Name
Type
Description

apiKey*

string

API key to authorize requests

Body parameters

Name
Type
Description

ids*

array of integers

The IDs of the proxies you wish to comment on

comment*

string

The comment you want to associate with the specified proxies

Request examples

curl -X POST "https://geonix.com/personal/api/v1/YOUR_API_KEY_HERE/proxy/comment/set" \
     -H "Content-Type: application/json" \
     -d '{"ids": [105487, 458746], "comment": "New comment"}'

Response examples

{
  "status": "success",
  "data": {
    "updated": 5
  },
  "errors": []
}

Last updated