
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
A NodeJS library to talk to Target Process 3's API.
In your NodeJS program, add:
var tp = require('tp-api')({
domain: // your domain here; eg: 'fullscreen.tpondemand.com'
username: // your username; eg: 'paul@fullscreen.net'
password: // your password
version: // Optional API version - defaults to 1
protocol: // Optional protocol - defaults to https
})
tp('Tasks')
.take(5)
.where("EntityState.Name eq 'Open'")
.pluck('Name', 'NumericPriority')
.sortBy('NumericPriority')
.then(function(err, tasks) {
console.log('my tasks', tasks)
}
)
tp()
or tp([Entity name])
Returns a TargetProcess request object. Can optionally set an entity to request.
tp.get(Entity Name)
Tells the TargetProcess object to request the given entity. An entity can be one of the following:
Example - fetch a list of roles
tp('Roles').then(function(err, roles) { ... })
tp.take(n)
Tells the TargetProcess object to request n
of the requested entities
Example - fetch 5 tasks:
tp('Tasks').take(5).then(function(err, tasks) { ... })
tp.context(acid)
Retrieve list of entities for specific projects (via Acid)
Example - fetch 5 tasks of the project with the context 123456:
tp('Tasks').take(5).context(123456).then(function(err, tasks) { ... })
tp.where(search expression)
Applies a search filter to the TargetProcess request.
Example, find open tasks:
tp('Tasks').where("EntityState.Name eq 'Open'").then(function(err, tasks) { ... })
More info on Target Process filters can be found here: https://dev.targetprocess.com/docs/sorting-and-filters
tp.pluck(list, of, properties)
Instructs the Target Process object to only include the listed properties in the response object:
Example, fetch the name and description from these tasks:
tp('Tasks').pluck('Name', 'Description').then(function(err, tasks) { ... })
tp.sortBy(field)
Tells the Target Process request to sort on the given field
Example, fetch a list of tasks by priority:
tp('Tasks').sortBy('NumericPriority').then(function(err, tasks) { ... })
or sort by descending order:
tp('Tasks').sortByDesc('NumericPriority').then(function(err, tasks) { ... })
tp.append(list, of, properties)
Instructs the Target Process request to get additional information about Entity
Example, get number of bugs, tasks and comments associated with those user stories:
tp('UserStories').append('Bugs-Count, Tasks-Count, Comments-Count')
.then(function(err, stories) { ... })
tp.then(handlerFunction)
Executes the Target Process request. Your callback will be called with an error object and the result of your request.
Example, fetch a list of tasks:
tp('Tasks').then(function(err, tasks) {
console.log('My tasks', tasks)
console.error('Errors from the request', err)
})
tp.thenEntities(handlerFunction)
Thin wrapper around tp.then
, but instead of returning (err, data)
it returns (err, entities)
where entities is an array of entity objects.
Example, fetch a list of Entities
// Move all open tasks to 'Planned'
tp('Tasks').
where("EntityState.Name eq 'Open'").
then(function(err, tasks) {
tasks.forEach(function(entity){
entity.setState('Planned')
})
})
It may happen that the following code:
tp('Tasks')
.take(1)
.pluck('CustomFields')
.then(function(err, tasks) {
console.log('my tasks', tasks)
}
)
will return a lot of nested JSON objects:
my tasks [ { ResourceType: 'Task',
Id: 3631,
Project: { ResourceType: 'Project', Id: 4026, Process: [Object] },
CustomFields: [ [Object], [Object], [Object], [Object], [Object] ] } ]
The returned object tasks
here is a JavaScript object. In order to convert it into JSON string, use JSON.stringify()
:
tp('Tasks')
.take(1)
.pluck('CustomFields')
.then(function(err, tasks) {
console.log('my tasks', JSON.stringify(tasks)) // changed here
}
)
and now it returns:
my tasks [{"ResourceType":"Task","Id":3631,"Project":{"ResourceType":"Project","Id":4026,"Process":{"Id":5,"Name":"AIScrum"}},"CustomFields":[{"Name":"Component","Type":"DropDown","Value":null},{"Name":"trac","Type":"Number","Value":null},{"Name":"Job","Type":"DropDown","Value":null},{"Name":"Resolution","Type":"DropDown","Value":null},{"Name":"Domain","Type":"DropDown","Value":null}]}]
FAQs
An API to access entities from TargetProcess
The npm package tp-api receives a total of 2 weekly downloads. As such, tp-api popularity was classified as not popular.
We found that tp-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.