Documentation Index Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
Server path: /adobe-workfront | Type: Application | PCID required: Yes
Tool Description adobe_workfront_create_issueCreate a new issue in a project adobe_workfront_create_projectCreate a new project adobe_workfront_create_taskCreate a new task in a project adobe_workfront_delete_issueDelete an issue by ID adobe_workfront_delete_projectDelete a project by ID adobe_workfront_delete_taskDelete a task by ID adobe_workfront_get_current_userGet the currently authenticated user adobe_workfront_get_documentGet a document by ID adobe_workfront_get_issueGet an issue by ID adobe_workfront_get_portfolioGet a portfolio by ID adobe_workfront_get_projectGet a project by ID adobe_workfront_get_taskGet a task by ID adobe_workfront_get_teamGet a team by ID adobe_workfront_get_userGet a user by ID adobe_workfront_log_hoursLog hours against a task or project adobe_workfront_search_documentsSearch for documents matching filter criteria adobe_workfront_search_hoursSearch for hour entries matching filter criteria adobe_workfront_search_issuesSearch for issues matching filter criteria adobe_workfront_search_portfoliosSearch for portfolios matching filter criteria adobe_workfront_search_projectsSearch for projects matching filter criteria adobe_workfront_search_tasksSearch for tasks matching filter criteria adobe_workfront_search_teamsSearch for teams matching filter criteria adobe_workfront_search_usersSearch for users matching filter criteria adobe_workfront_update_issueUpdate an existing issue adobe_workfront_update_projectUpdate an existing project adobe_workfront_update_taskUpdate an existing task
adobe_workfront_create_issue
Create a new issue in a project
Parameters:
Parameter Type Required Default Description namestring Yes — Issue name projectIDstring Yes — ID of the project to create the issue in statusstring No — Status code (NEW=New, INP=In Progress, default NEW) descriptionstring No — Issue description assignedToIDstring No — User ID to assign the issue to priorityinteger No — Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent) opTaskTypestring No — Issue type (BUG=Bug Report, CHG=Change Order, ISU=Issue, REQ=Request)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Issue name"
},
"projectID" : {
"type" : "string" ,
"description" : "ID of the project to create the issue in"
},
"status" : {
"type" : "string" ,
"description" : "Status code (NEW=New, INP=In Progress, default NEW)"
},
"description" : {
"type" : "string" ,
"description" : "Issue description"
},
"assignedToID" : {
"type" : "string" ,
"description" : "User ID to assign the issue to"
},
"priority" : {
"type" : "integer" ,
"description" : "Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent)"
},
"opTaskType" : {
"type" : "string" ,
"description" : "Issue type (BUG=Bug Report, CHG=Change Order, ISU=Issue, REQ=Request)"
}
},
"required" : [
"PCID" ,
"name" ,
"projectID"
]
}
adobe_workfront_create_project
Create a new project
Parameters:
Parameter Type Required Default Description namestring Yes — Project name statusstring No — Status code (CUR=Current, PLN=Planning, default PLN) descriptionstring No — Project description plannedStartDatestring No — Planned start date (ISO 8601 format) plannedCompletionDatestring No — Planned completion date (ISO 8601 format) priorityinteger No — Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent) ownerIDstring No — User ID to assign as project owner portfolioIDstring No — Portfolio ID to assign the project to
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Project name"
},
"status" : {
"type" : "string" ,
"description" : "Status code (CUR=Current, PLN=Planning, default PLN)"
},
"description" : {
"type" : "string" ,
"description" : "Project description"
},
"plannedStartDate" : {
"type" : "string" ,
"description" : "Planned start date (ISO 8601 format)"
},
"plannedCompletionDate" : {
"type" : "string" ,
"description" : "Planned completion date (ISO 8601 format)"
},
"priority" : {
"type" : "integer" ,
"description" : "Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent)"
},
"ownerID" : {
"type" : "string" ,
"description" : "User ID to assign as project owner"
},
"portfolioID" : {
"type" : "string" ,
"description" : "Portfolio ID to assign the project to"
}
},
"required" : [
"PCID" ,
"name"
]
}
adobe_workfront_create_task
Create a new task in a project
Parameters:
Parameter Type Required Default Description namestring Yes — Task name projectIDstring Yes — ID of the project to create the task in statusstring No — Status code (NEW=New, INP=In Progress, default NEW) descriptionstring No — Task description assignedToIDstring No — User ID to assign the task to plannedStartDatestring No — Planned start date (ISO 8601 format) plannedCompletionDatestring No — Planned completion date (ISO 8601 format) priorityinteger No — Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent) parentIDstring No — Parent task ID (for creating subtasks)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Task name"
},
"projectID" : {
"type" : "string" ,
"description" : "ID of the project to create the task in"
},
"status" : {
"type" : "string" ,
"description" : "Status code (NEW=New, INP=In Progress, default NEW)"
},
"description" : {
"type" : "string" ,
"description" : "Task description"
},
"assignedToID" : {
"type" : "string" ,
"description" : "User ID to assign the task to"
},
"plannedStartDate" : {
"type" : "string" ,
"description" : "Planned start date (ISO 8601 format)"
},
"plannedCompletionDate" : {
"type" : "string" ,
"description" : "Planned completion date (ISO 8601 format)"
},
"priority" : {
"type" : "integer" ,
"description" : "Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent)"
},
"parentID" : {
"type" : "string" ,
"description" : "Parent task ID (for creating subtasks)"
}
},
"required" : [
"PCID" ,
"name" ,
"projectID"
]
}
adobe_workfront_delete_issue
Delete an issue by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The issue ID to delete forceboolean No — Set to true to force delete
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The issue ID to delete"
},
"force" : {
"type" : "boolean" ,
"description" : "Set to true to force delete"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_delete_project
Delete a project by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The project ID to delete forceboolean No — Set to true to force delete even if the project has tasks or issues
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The project ID to delete"
},
"force" : {
"type" : "boolean" ,
"description" : "Set to true to force delete even if the project has tasks or issues"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_delete_task
Delete a task by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The task ID to delete forceboolean No — Set to true to force delete
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The task ID to delete"
},
"force" : {
"type" : "boolean" ,
"description" : "Set to true to force delete"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_get_current_user
Get the currently authenticated user
Parameters:
Parameter Type Required Default Description fieldsstring No — Comma-separated fields to include (e.g., name,emailAddr,title,isActive,role:name,homeTeam:name)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,emailAddr,title,isActive,role:name,homeTeam:name)"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_get_document
Get a document by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The document ID fieldsstring No — Comma-separated fields to include (e.g., name,description,docObjCode,objID,currentVersion:fileName,currentVersion:fileSize,owner:name)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The document ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,description,docObjCode,objID,currentVersion:fileName,currentVersion:fileSize,owner:name)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_get_issue
Get an issue by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The issue ID fieldsstring No — Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,opTaskType,priority,description,resolveTask:name)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The issue ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,opTaskType,priority,description,resolveTask:name)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_get_portfolio
Get a portfolio by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The portfolio ID fieldsstring No — Comma-separated fields to include (e.g., name,description,isActive,owner:name,budget)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The portfolio ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,description,isActive,owner:name,budget)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_get_project
Get a project by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The project ID fieldsstring No — Comma-separated list of fields to include (e.g., name,status,plannedStartDate,plannedCompletionDate,owner:name,percentComplete,budget)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The project ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated list of fields to include (e.g., name,status,plannedStartDate,plannedCompletionDate,owner:name,percentComplete,budget)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_get_task
Get a task by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The task ID fieldsstring No — Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,plannedStartDate,plannedCompletionDate,percentComplete)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The task ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,plannedStartDate,plannedCompletionDate,percentComplete)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_get_team
Get a team by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The team ID fieldsstring No — Comma-separated fields to include (e.g., name,description,teamMembers:name)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The team ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,description,teamMembers:name)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_get_user
Get a user by ID
Parameters:
Parameter Type Required Default Description idstring Yes — The user ID fieldsstring No — Comma-separated fields to include (e.g., name,emailAddr,title,isActive,role:name,homeTeam:name,phoneNumber)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The user ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,emailAddr,title,isActive,role:name,homeTeam:name,phoneNumber)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_log_hours
Log hours against a task or project
Parameters:
Parameter Type Required Default Description hoursnumber Yes — Number of hours to log entryDatestring Yes — Date for the hour entry (ISO 8601 format) taskIDstring No — Task ID to log hours against (provide taskID or projectID) projectIDstring No — Project ID to log hours against (provide taskID or projectID) hourTypeIDstring No — Hour type ID (e.g., for billable, non-billable categories) descriptionstring No — Description of the work performed
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"hours" : {
"type" : "number" ,
"description" : "Number of hours to log"
},
"entryDate" : {
"type" : "string" ,
"description" : "Date for the hour entry (ISO 8601 format)"
},
"taskID" : {
"type" : "string" ,
"description" : "Task ID to log hours against (provide taskID or projectID)"
},
"projectID" : {
"type" : "string" ,
"description" : "Project ID to log hours against (provide taskID or projectID)"
},
"hourTypeID" : {
"type" : "string" ,
"description" : "Hour type ID (e.g., for billable, non-billable categories)"
},
"description" : {
"type" : "string" ,
"description" : "Description of the work performed"
}
},
"required" : [
"PCID" ,
"hours" ,
"entryDate"
]
}
adobe_workfront_search_documents
Search for documents matching filter criteria
Parameters:
Parameter Type Required Default Description namestring No — Filter by document name name_Modstring No — Modifier for name filter: contains, cicontains, eq, ne projectIDstring No — Filter by project ID taskIDstring No — Filter by task ID fieldsstring No — Comma-separated fields to include (e.g., name,description,docObjCode,objID,currentVersion:fileName,owner:name) $$LIMITinteger No — Maximum number of results (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Filter by document name"
},
"name_Mod" : {
"type" : "string" ,
"description" : "Modifier for name filter: contains, cicontains, eq, ne"
},
"projectID" : {
"type" : "string" ,
"description" : "Filter by project ID"
},
"taskID" : {
"type" : "string" ,
"description" : "Filter by task ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,description,docObjCode,objID,currentVersion:fileName,owner:name)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_search_hours
Search for hour entries matching filter criteria
Parameters:
Parameter Type Required Default Description projectIDstring No — Filter by project ID taskIDstring No — Filter by task ID ownerIDstring No — Filter by the user who logged the hours entryDatestring No — Filter by entry date (ISO 8601 format) entryDate_Modstring No — Modifier for entryDate filter: between, gte, lte, eq entryDate_Rangestring No — Date range for between modifier (e.g., 2024-01-01T00:00:00,2024-12-31T23:59:59) fieldsstring No — Comma-separated fields to include (e.g., hours,entryDate,owner:name,project:name,task:name,hourType:name) $$LIMITinteger No — Maximum number of results (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"projectID" : {
"type" : "string" ,
"description" : "Filter by project ID"
},
"taskID" : {
"type" : "string" ,
"description" : "Filter by task ID"
},
"ownerID" : {
"type" : "string" ,
"description" : "Filter by the user who logged the hours"
},
"entryDate" : {
"type" : "string" ,
"description" : "Filter by entry date (ISO 8601 format)"
},
"entryDate_Mod" : {
"type" : "string" ,
"description" : "Modifier for entryDate filter: between, gte, lte, eq"
},
"entryDate_Range" : {
"type" : "string" ,
"description" : "Date range for between modifier (e.g., 2024-01-01T00:00:00,2024-12-31T23:59:59)"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., hours,entryDate,owner:name,project:name,task:name,hourType:name)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_search_issues
Search for issues matching filter criteria
Parameters:
Parameter Type Required Default Description namestring No — Filter by issue name name_Modstring No — Modifier for name filter: contains, cicontains, eq, ne projectIDstring No — Filter by project ID statusstring No — Filter by issue status (NEW=New, INP=In Progress, CPL=Complete, CLS=Closed) assignedToIDstring No — Filter by assigned user ID opTaskTypestring No — Filter by issue type (BUG=Bug Report, CHG=Change Order, ISU=Issue, REQ=Request) fieldsstring No — Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,opTaskType,priority,description) $$LIMITinteger No — Maximum number of results (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Filter by issue name"
},
"name_Mod" : {
"type" : "string" ,
"description" : "Modifier for name filter: contains, cicontains, eq, ne"
},
"projectID" : {
"type" : "string" ,
"description" : "Filter by project ID"
},
"status" : {
"type" : "string" ,
"description" : "Filter by issue status (NEW=New, INP=In Progress, CPL=Complete, CLS=Closed)"
},
"assignedToID" : {
"type" : "string" ,
"description" : "Filter by assigned user ID"
},
"opTaskType" : {
"type" : "string" ,
"description" : "Filter by issue type (BUG=Bug Report, CHG=Change Order, ISU=Issue, REQ=Request)"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,opTaskType,priority,description)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_search_portfolios
Search for portfolios matching filter criteria
Parameters:
Parameter Type Required Default Description namestring No — Filter by portfolio name name_Modstring No — Modifier for name filter: contains, cicontains, eq, ne isActiveboolean No — Filter by active status ownerIDstring No — Filter by portfolio owner user ID fieldsstring No — Comma-separated fields to include (e.g., name,description,isActive,owner:name,budget) $$LIMITinteger No — Maximum number of results (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Filter by portfolio name"
},
"name_Mod" : {
"type" : "string" ,
"description" : "Modifier for name filter: contains, cicontains, eq, ne"
},
"isActive" : {
"type" : "boolean" ,
"description" : "Filter by active status"
},
"ownerID" : {
"type" : "string" ,
"description" : "Filter by portfolio owner user ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,description,isActive,owner:name,budget)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_search_projects
Search for projects matching filter criteria
Parameters:
Parameter Type Required Default Description namestring No — Filter by project name (exact match or use name_Mod=contains for partial) name_Modstring No — Modifier for name filter: contains, cicontains, between, eq, ne, gte, lte statusstring No — Filter by project status code (CUR=Current, PLN=Planning, CPL=Complete, DED=Dead, ONH=On Hold) ownerIDstring No — Filter by project owner user ID portfolioIDstring No — Filter by portfolio ID fieldsstring No — Comma-separated list of fields to include in response (e.g., name,status,plannedStartDate,plannedCompletionDate,owner:name,percentComplete) $$LIMITinteger No — Maximum number of results to return (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Filter by project name (exact match or use name_Mod=contains for partial)"
},
"name_Mod" : {
"type" : "string" ,
"description" : "Modifier for name filter: contains, cicontains, between, eq, ne, gte, lte"
},
"status" : {
"type" : "string" ,
"description" : "Filter by project status code (CUR=Current, PLN=Planning, CPL=Complete, DED=Dead, ONH=On Hold)"
},
"ownerID" : {
"type" : "string" ,
"description" : "Filter by project owner user ID"
},
"portfolioID" : {
"type" : "string" ,
"description" : "Filter by portfolio ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated list of fields to include in response (e.g., name,status,plannedStartDate,plannedCompletionDate,owner:name,percentComplete)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results to return (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_search_tasks
Search for tasks matching filter criteria
Parameters:
Parameter Type Required Default Description namestring No — Filter by task name name_Modstring No — Modifier for name filter: contains, cicontains, eq, ne projectIDstring No — Filter by project ID statusstring No — Filter by task status (NEW=New, INP=In Progress, CPL=Complete, DED=Dead) assignedToIDstring No — Filter by assigned user ID fieldsstring No — Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,plannedStartDate,plannedCompletionDate,percentComplete,priority) $$LIMITinteger No — Maximum number of results (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Filter by task name"
},
"name_Mod" : {
"type" : "string" ,
"description" : "Modifier for name filter: contains, cicontains, eq, ne"
},
"projectID" : {
"type" : "string" ,
"description" : "Filter by project ID"
},
"status" : {
"type" : "string" ,
"description" : "Filter by task status (NEW=New, INP=In Progress, CPL=Complete, DED=Dead)"
},
"assignedToID" : {
"type" : "string" ,
"description" : "Filter by assigned user ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,status,projectID,assignedTo:name,plannedStartDate,plannedCompletionDate,percentComplete,priority)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_search_teams
Search for teams matching filter criteria
Parameters:
Parameter Type Required Default Description namestring No — Filter by team name name_Modstring No — Modifier for name filter: contains, cicontains, eq, ne fieldsstring No — Comma-separated fields to include (e.g., name,description,teamMembers:name) $$LIMITinteger No — Maximum number of results (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Filter by team name"
},
"name_Mod" : {
"type" : "string" ,
"description" : "Modifier for name filter: contains, cicontains, eq, ne"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,description,teamMembers:name)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_search_users
Search for users matching filter criteria
Parameters:
Parameter Type Required Default Description namestring No — Filter by user display name name_Modstring No — Modifier for name filter: contains, cicontains, eq, ne emailAddrstring No — Filter by email address isActiveboolean No — Filter by active status (true/false) roleIDstring No — Filter by job role ID fieldsstring No — Comma-separated fields to include (e.g., name,emailAddr,title,isActive,role:name,homeTeam:name) $$LIMITinteger No — Maximum number of results (default 100, max 2000) $$FIRSTinteger No — Number of results to skip for pagination
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"name" : {
"type" : "string" ,
"description" : "Filter by user display name"
},
"name_Mod" : {
"type" : "string" ,
"description" : "Modifier for name filter: contains, cicontains, eq, ne"
},
"emailAddr" : {
"type" : "string" ,
"description" : "Filter by email address"
},
"isActive" : {
"type" : "boolean" ,
"description" : "Filter by active status (true/false)"
},
"roleID" : {
"type" : "string" ,
"description" : "Filter by job role ID"
},
"fields" : {
"type" : "string" ,
"description" : "Comma-separated fields to include (e.g., name,emailAddr,title,isActive,role:name,homeTeam:name)"
},
"$$LIMIT" : {
"type" : "integer" ,
"description" : "Maximum number of results (default 100, max 2000)"
},
"$$FIRST" : {
"type" : "integer" ,
"description" : "Number of results to skip for pagination"
}
},
"required" : [
"PCID"
]
}
adobe_workfront_update_issue
Update an existing issue
Parameters:
Parameter Type Required Default Description idstring Yes — The issue ID to update namestring No — New issue name statusstring No — New status code (NEW=New, INP=In Progress, CPL=Complete, CLS=Closed) descriptionstring No — New issue description assignedToIDstring No — User ID to assign the issue to priorityinteger No — Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The issue ID to update"
},
"name" : {
"type" : "string" ,
"description" : "New issue name"
},
"status" : {
"type" : "string" ,
"description" : "New status code (NEW=New, INP=In Progress, CPL=Complete, CLS=Closed)"
},
"description" : {
"type" : "string" ,
"description" : "New issue description"
},
"assignedToID" : {
"type" : "string" ,
"description" : "User ID to assign the issue to"
},
"priority" : {
"type" : "integer" ,
"description" : "Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent)"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_update_project
Update an existing project
Parameters:
Parameter Type Required Default Description idstring Yes — The project ID to update namestring No — New project name statusstring No — New status code (CUR=Current, PLN=Planning, CPL=Complete, DED=Dead, ONH=On Hold) descriptionstring No — New project description plannedStartDatestring No — Planned start date (ISO 8601 format) plannedCompletionDatestring No — Planned completion date (ISO 8601 format) priorityinteger No — Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent) ownerIDstring No — User ID to assign as project owner
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The project ID to update"
},
"name" : {
"type" : "string" ,
"description" : "New project name"
},
"status" : {
"type" : "string" ,
"description" : "New status code (CUR=Current, PLN=Planning, CPL=Complete, DED=Dead, ONH=On Hold)"
},
"description" : {
"type" : "string" ,
"description" : "New project description"
},
"plannedStartDate" : {
"type" : "string" ,
"description" : "Planned start date (ISO 8601 format)"
},
"plannedCompletionDate" : {
"type" : "string" ,
"description" : "Planned completion date (ISO 8601 format)"
},
"priority" : {
"type" : "integer" ,
"description" : "Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent)"
},
"ownerID" : {
"type" : "string" ,
"description" : "User ID to assign as project owner"
}
},
"required" : [
"PCID" ,
"id"
]
}
adobe_workfront_update_task
Update an existing task
Parameters:
Parameter Type Required Default Description idstring Yes — The task ID to update namestring No — New task name statusstring No — New status code (NEW=New, INP=In Progress, CPL=Complete, DED=Dead) descriptionstring No — New task description assignedToIDstring No — User ID to assign the task to plannedStartDatestring No — Planned start date (ISO 8601 format) plannedCompletionDatestring No — Planned completion date (ISO 8601 format) priorityinteger No — Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent) percentCompletenumber No — Percent complete (0-100)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID for the authenticated connection"
},
"id" : {
"type" : "string" ,
"description" : "The task ID to update"
},
"name" : {
"type" : "string" ,
"description" : "New task name"
},
"status" : {
"type" : "string" ,
"description" : "New status code (NEW=New, INP=In Progress, CPL=Complete, DED=Dead)"
},
"description" : {
"type" : "string" ,
"description" : "New task description"
},
"assignedToID" : {
"type" : "string" ,
"description" : "User ID to assign the task to"
},
"plannedStartDate" : {
"type" : "string" ,
"description" : "Planned start date (ISO 8601 format)"
},
"plannedCompletionDate" : {
"type" : "string" ,
"description" : "Planned completion date (ISO 8601 format)"
},
"priority" : {
"type" : "integer" ,
"description" : "Priority level (0=None, 1=Low, 2=Normal, 3=High, 4=Urgent)"
},
"percentComplete" : {
"type" : "number" ,
"description" : "Percent complete (0-100)"
}
},
"required" : [
"PCID" ,
"id"
]
}