Uncategorized

Managing User Tags via API

The Checklick API allows you to add or remove tags for users programmatically. Here's how: 1. Ensure you have a valid API key (see "Managing API Keys"). 2. To add a tag, use POST /v2/tags with a JSON payload including person_id and tag_name. Example: curl -X POST https://api.checklick.com/v2/tags -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/vnd.api+json" -H "Organization-Id: YOUR_ORG_ID" -d '{"data": {"type": "tags", "attributes": {"person_id": "123", "tag_name": "Evaluator"}}}'. 3. To remove a tag, use DELETE /v2/tags/{id}. Example: curl -X DELETE https://api.checklick.com/v2/tags/456 -H "Authorization: Bearer YOUR_API_KEY" -H "Organization-Id: YOUR_ORG_ID". Quick tips: * Use GET /v2/tags to list all tags for a user. * Tags are case-sensitive. * Check https://api.checklick.com/docs for detailed payload requirements.