Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titlecreateCase
<clevertimcrm.createCase>
	<name>{$ctx:name}</name>
	<tags>{$ctx:tags}</tags> 
    <customFields>{$ctx:customFields}</customFields> 
    <description>{$ctx:description}</description> 
    <name>{$ctx:name}</name> 
    <leadUser>{$ctx:leadUser}</leadUser> 
    <customer>{$ctx:customer}</customer> 
</clevertimcrm.createCase> 
Properties
  • name: Required - The name of the case.
  • tags: The tags associated with the case.
  • customFields: The custom fields associated with the case.
  • description: The description of the case.
  • name: The name of the case.
  • leadUser: The lead user of the case.
  • customer: The customer belonging to the case.

...

Code Block
languagexml
titleupdateCases
<clevertimcrm.updateCase> 
	<tags><id>{$ctx:tagsid}</tags>id> 
    <id>	<tags>{$ctx:idtags}</id>tags> 
    <customFields>{$ctx:customFields}</customFields> 
    <description>{$ctx:description}</description> 
    <name>{$ctx:name}</name> 
    <leadUser>{$ctx:leadUser}</leadUser> 
    <customer>{$ctx:customer}</customer> 
</clevertimcrm.updateCase> 
Properties
  • id: Required - The ID of the case.
  • tags: The tags associated with the case.id: The ID of the case.
  • customFields: The custom fields associated with the case.
  • description: The description of the case.
  • name: The name of the case.
  • leadUser: The lead user of the case.
  • customer: The customer who belongs to the case.

...