putClientsTags

Operation Id:
clients/tags/put [Official Documentaction]
Methods

  • clientId Integer
  • clientTags Array<Object>
  • tagId Integer
  • operation 'add'|'set'|'subtract'
  • tagValue Integer
Examples

This function sets a tag value of 123 for client 3 with tag ID 1.

const result = await idosellRequest.putClientsTags
	.clientId(3)
	.tagId(1)
	.operation("set")
	.tagValue(123)
	.exec()