PATCH
/tags/{id}
curl \
-X PATCH https://YOURSITE.infoodle.com/apiv2/tags/99 \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"header_id":123,"name":"Tag A","public":1,"order":1}'
Request examples
{
"header_id": 123,
"name": "Tag A",
"public": 1,
"order": 1
}
Response examples (200)
{
"id": 4325342
}
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}
Response examples (404)
{
"error": "Not Found"
}