Tags
List Tags:
GET /api/pub/tagsAdd a tag to a lead:
PUT /api/pub/lead/{leadId}/tags?userId=123Params: leadId (number): the lead ID. userId (number): the user ID from the lead.
Body: - userId (number): the user ID from the lead. - tagIds (list of numbers): the tag IDs. For tag IDs, the tags are expected to be base 10 numbers. For This list will accept a maximum of 10 tags at a time.
Remove a tag from a lead:
DELETE /api/pub/lead/{leadId}/tags?userId=123Params: leadId (number): the lead ID. userId (number): the user ID from the lead.
Body: - userId (number): the user ID from the lead. - tagIds (list of numbers): the tag IDs. For tag IDs, the tags are expected to be base 10 numbers. For This list will accept a maximum of 10 tags at a time.
Last updated