# Comment on IP

The comment on IP API allows users to add a comment to a specific proxy in the system.

### **Endpoint:**

<mark style="color:yellow;">`POST`</mark> `https://proxy-seller.com/personal/api/v1/`**`{YourApiKey}`**`/proxy/comment/set`

#### **Example**

```
https://proxy-seller.com/personal/api/v1/fj4948ffhg58gh843gh/proxy/comment/set
```

### **Response**

{% tabs %}
{% tab title="200: OK Success response" %}

```json
{
    "status": "success",
    "data": {
        "updated": 1
    },
    "errors": []
}
```

{% endtab %}

{% tab title="200: OK Error response" %}
**IP not found**

```json
{
    "status": "error",
    "data": null,
    "errors": [
        {
            "message": "IP not found",
            "code": 0,
            "customData": null
        }
    ]
}
```

{% endtab %}
{% endtabs %}

### Path parameters

<table data-full-width="false"><thead><tr><th width="149">Name</th><th width="259">Value</th><th>Description</th><th data-hidden></th></tr></thead><tbody><tr><td>Authorization</td><td><code>&#x3C;Your_API_Key></code></td><td>Your personal API key (<a href="../../authorization#get-your-api-keys">how to get</a>)</td><td></td></tr></tbody></table>

### **Request body**

<table><thead><tr><th width="139">Name</th><th width="134">Type</th><th>Description</th></tr></thead><tbody><tr><td>ids</td><td>Number</td><td>A single ID or an array of IDs in '[ ]', separated by commas.</td></tr><tr><td>comment</td><td>String</td><td>The comment you want to add.</td></tr></tbody></table>
