Search tag
Limited to those tags the user can see. Filtered by the posted fields. Returned in ID order
POST
/tags/search/{fromthisid}
curl \
-X POST https://YOURSITE.infoodle.com/apiv2/tags/search/4 \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"search":[{"by":"name","value":"Test Item"}]}'
Request examples
{
"search": [
{
"by": "name",
"value": "Test Item"
}
]
}
Response examples (200)
[
[
{
"id": 123,
"header_id": 123,
"name": "Tag A",
"public": 1,
"order": 1
}
]
]
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}