API Access Token

v1_tag API

/**
 * REST API end-points for interacting with the 'tag' resource. Tags are applicable to booking, client, person, and project resources (among others).
 * 
 */
Returns information about the 'tag' resource (referred to as 'resource' below) filterable by the fields described below.
Tags can be applied to multiple types of resources providing the end user with the ability to classify resources for internal purposes.
The tag resource is dynamic and can be modified by the end user via the interface.
Resource response fields:
- 'tag_id' (primary key, number): The ID of the tag resource.
- 'tag_name' (string): The name of the tag.
- 'tag_description' (string): The description of the tag.
- '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 to query for only resources that have changed after this date and time on subsequent requests.
@return array of resources. Returns a single record if the tag_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.
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.
The unique ID of the desired resource. Returns a single record if it exists. Other filters do not apply.