Add comments on Blocked IP addresses
Description:
You can also add comments on IP addresses that you have blocked so far.
JSON Params:
- text(mandatory)- This is used to add comments on the blocked IP address
OAuth Scope:
SalesIQ.blockedips.CREATE
URL:
Copiedhttps://{zohosalesiq_server_uri}/api/v2/{screenname}/blockedips/{id}/comments
Example
Copiedhttps://salesiq.zoho.com/api/v2/zylker/blockedips/33000000004003/comments
Payload
Copied{
"text": "testing comment"
}
Sample Response
Copied{
"object": "blockedips",
"url": "/api/v2/blockedips/33000000004003/comments",
"data": {
"status": "blocked",
"blocked_by": "33000000000005",
"app": {
"name": "Danny",
"id": "33000000000047"
},
"comments": [
{
"operator_id": "33000000000005",
"time": "1550753476224",
"text": "testing comment"
}
],
"modified_time": "1550753352561",
"ip": "1.1.2.2",
"no_of_comments": "1",
"id": "33000000004003"
}
}