Skip to content

teamcfadvance/TeamworkAPICFC

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Teamwork.com API CFC

Teamwork.com API CFC for ColdFusion.

View our Developer Site For a list of methods and examples.

Quick Example

<cfsetting enablecfoutputonly="No">

<cfset LOCAL.baseHref = "https://yoursite.teamwork.com/">
<cfset LOCAL.APIKey = "myKey">

<cfset LOCAL.taskId = 1234567>

<cfsavecontent variable="LOCAL.commentBody">
This is a test comment.

This uses the TeamworkAPI CFC
</cfsavecontent>

<cfset LOCAL.teamworkAPIObj = new teamworkpmAPI( LOCAL.baseHref , LOCAL.APIKey )>

<cfset LOCAL.response = LOCAL.teamworkAPIObj.newComment(
	objectId	=	LOCAL.taskId,
	type		=	"task",
	body		=	LOCAL.commentBody
)>

<cfdump var="#LOCAL.response#">

About

Teamwork.com API CFC for ColdFusion

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • ColdFusion 100.0%