**Does anyone know the correct REST v2 API endpoint to apply tags to contacts?
**Setup (all verified working):**
- Contact ID: `1000`
- Tag ID: `100` (GET /tags works)
- OAuth Bearer token (With this token contact api already working)
Method 1**
POST /crm/rest/v2/tags/100/contacts
{“contact_ids”: [“1000”]}
→ 405 Method Not Allowed (Allow: GET)
Method 2
PATCH /crm/rest/v2/contacts/1000
{“tags”: }
→ 400 “Unrecognized property: tags”
Method 3
POST /crm/rest/v2/tags/100/contacts/applyTags
→ 404 Not Found
Method 4
POST /crm/rest/v2/contacts/1000/tags
→ 405 Method Not Allowed
I am following bellow doc for integrate API.
Thanks