Keywords
targets
Get all targets (keyword lists)
post
Body
objectOptional
Responses
200
OK
application/json
default
Default error response
application/json
post
POST /api/v1/quick-task/keywords/targets HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 2
{}
{
"targets": [
"text"
]
}
keywords
Get keywords for spefic list
post
Body
targetstringOptional
Responses
200
OK
application/json
default
Default error response
application/json
post
POST /api/v1/quick-task/keywords HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"target": "text"
}
{
"keywords": [
{
"id": "text",
"target": "text",
"isWhitelisted": true
}
]
}
add
Add multiple keywords to specific list
If target
does not exists it will be automatically created
You can omit keyword.target
field. Instead be sure to specify target
post
Body
targetstringOptional
Responses
200
OK
application/json
Responseobject
default
Default error response
application/json
post
POST /api/v1/quick-task/keywords/add HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 81
{
"keywords": [
{
"id": "text",
"target": "text",
"isWhitelisted": true
}
],
"target": "text"
}
{}
remove
Remove keywords from specific list
post
Body
keywordsstring[]Optional
targetstringOptional
Responses
200
OK
application/json
Responseobject
default
Default error response
application/json
post
POST /api/v1/quick-task/keywords/remove HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 37
{
"keywords": [
"text"
],
"target": "text"
}
{}
drop
Remove all keywords from the list, list will be deleted too
post
Body
targetstringOptional
Responses
200
OK
application/json
Responseobject
default
Default error response
application/json
post
POST /api/v1/quick-task/keywords/drop HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"target": "text"
}
{}
Last updated