API Access Token

v1_client API

/**
 * REST API end-points for interacting with the 'client' resource.
 * 
 */
Returns information about the 'client' resource (referred to as 'resource' below) filterable by the fields described below.
The client resource is dynamic and can be modified by the end user via the interface.
Resource response fields:
- 'client_id' (primary key, number): The ID of the client resource.
- 'client_name' (string): The name of the client resource.
- 'tag_ids' (number set): A set of tag resource IDs related to the record.
- 'project_type_ids' (number set): A set of project_type resource IDs related to the record. Each client can have multiple projects and each project has a project_type (See V1_projectproject_type end-point).
This set is a distinct list of all project_types set on all of the client's projects.
- 'project_type_names' (string set): A set of human readable project_type resource names related to the record and corresponding to the values in the project_type_ids set.
- 'is_deleted' (boolean): Whether the resource is considered deleted or not.
- 'created_on' (datetime): The date and time that the resource was originally created on.
- 'last_modified' (datetime): The date and time that the resource was last modified.
- 'max_last_modified' (datetime): The date and time that the resource is being requested. Used in subsequent requests to query for only the resources that have changed after this date and time.
@return array of resources. Returns a single record if the client_id is provided.
Field Description
Comma Separated list of columns to restrict results to. Order is kept. If field does not exist then column will be included, but a blank result will be returned
eg: "name,description,created_by"

Currently only enabled for GET requests using formats of HTML, TSV, CSV
Comma Separated list of columns to exclude from results.
Currently only enabled for GET requests using formats of HTML, TSV, CSV Note: Exclude field will be ignored if fields are supplied.
The unique ID of the desired resource. Returns a single record if it exists. Other filters do not apply.
Flag indicating if the resource is deleted or not. 0 = not deleted, 1 = deleted.
A datetime of which the resource was last modified in the format of YYYY-MM-DD HH:mm:ss. Returns records with a last_modified datetime value greater that the datetime provided.