API Access Token

v1_document_type API

/**
 * REST API end-points for interacting with the 'document_type' resource.
 *
 */
Returns information about the 'document_type' resource (referred to as 'resource' below) filterable by the fields described below.
The document_type resource is dynamic and can be modified by the end user via the interface.
Resource response fields:
- 'document_type_id' (primary key, number): The ID of the resource.
- 'document_type_name' (string): The name of the resource.
- 'document_type_description' (string): A description of the resource.
- 'document_type_is_hidden_from_workers' (boolean): If 1, the resource is not intended for workeremployee consumption.
- 'document_type_is_hidden_from_clients' (boolean): If 1, the resource is not intended for client consumption.
- 'document_type_applies_to_bookings' (boolean): If 1, the resource applies to booking resources.
- 'document_type_applies_to_equipment' (boolean): If 1, the resource applies to equipment resources.
- 'document_type_applies_to_people' (boolean): If 1, the resource applies to person resources.
- 'document_type_applies_to_person_skills' (boolean): If 1, the resource applies to person_skill resources.
- 'document_type_applies_to_vehicles' (boolean): If 1, the resource applies to vehicle resources.
- 'document_type_applies_to_logos' (boolean): If 1, the resource applies to brand logo resources.
- 'document_type_applies_to_permits' (boolean): If 1, the resource applies to permit resources.
- '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 doc types
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.
Filter resources to match this flag. 0 = does not apply to booking resources, 1 = applies to booking resources.
Filter resources to match this flag. 0 = does not apply to equipment resources, 1 = applies to equipment resources.
Filter resources to match this flag. 0 = does not apply to person resources, 1 = applies to person resources.
Filter resources to match this flag. 0 = does not apply to permit resources, 1 = applies to permit resources.
Filter resources to match this flag. 0 = does not apply to person_skill resources, 1 = applies to person_skill resources.
Filter resources to match this flag. 0 = does not apply to vehicle resources, 1 = applies to vehicle resources.
The unique ID of the desired resource. Returns a single record if it exists. Other filters do not apply.
Filter resources to match this flag. 0 = not hidden from clients, 1 = hidden from clients.
Filter resources to match this flag. 0 = not hidden from workers, 1 = hidden from workers.
Filter resources to match this flag. 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.