Versions Compared

Key

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

...

date_type_before (unix timestamp)Accepts a unix timestamp. It will then filter milestones that have a timestamp before the supplied one. This supports types: created, modified, started, commenced, due and completed. For example, date_completed_before(<todays timestamp>) would only return milestones completed before today. 
date_type_after (unix timestamp)Accepts a unix timestamp. It will then filter milestones that have a timestamp after the supplied one. This supports types: created, modified, started, commenced, due and completed. For example, date_due_after(<todays timestamp>) would only return milestones due in the future (hopefully this is all of your jobs) 
managerArray of number. e.g 13,10,15- Filter out jobs that do not have a manager with supplied manager id. 
Status
colourGreen
titleNEW
affiliation
Array of number. e.g. _filters=affiliation(1, 3, 5) 
standingArray of standing status strings. For example standing(pending,active)- filter out jobs that do not have the supplied standing. 
typeArray of type ids, e.g. _filters=type(1,2) 
modified_byArray modified staff ids, e.g. _filters=modified_by(1,2) 
statusArray of status ids, e.g. _filters=status(1,2) 
rateArray of rate ids, e.g. _filters=rate(1,2) 
max_idOnly return jobs with id less or equal to 
min_idOnly return jobs with id greater or equal to 
against_type(...) or against_type_not(...)_filters=against_type(company, site)Only return jobs that are against a specific object type. Available object types include: company, and site.
against_id(...) or against_id_not(...)_filters=against_id(1,32)Only return jobs against an object with id
against(type1(...),typeN(...))_filters=against(company(1,4),site(4,5))Only return jobs with the matching against values. The example will only return jobs against company 1 and 4 or jobs against site 4 and 5.
order_by_asc<type>, order_by_desc<type>

Accepts: id, date_started, date_created, date_commenced, date_due and date_completed.

Status
colourGreen
titleNEW
date_modified, date_last_interacted, title, standing and status

 

NEW

<field_name>_greater_than(<value>),

<field_name>_less_than(<value>),

<field_name>_greater_than_or_equal(<value>),

<field_name>_less_than_or_equal(<value>)

e.g. _filters=id_greater_than(5)

Available fields:

id
type
manager
against_id
affiliation
modified_by
status
rate
rate_charged
contract
plan_modified_by

 

...