API Access Token

v1_booking_client_contact API

/**
 * REST API end-points for interacting with the 'booking_client_contact' resource.
 * 
 */
Returns information about the 'booking_client_contact' resource (referred to as 'resource' below) filterable by the fields described below.
The booking_client_contact resource is dynamic and can be modified by the end user via the interface.
Resource response fields:
- 'booking_id' (foreign key, primary key, number): The ID of the booking resource.
- 'client_contact_id' (foreign key, primary key, number): The ID of the client_contact resource.
- 'client_id' (foreign key, number): The ID of the client resource that the record belongs to.
- 'client_contact_first_name' (string): The first name of the contact.
- 'client_contact_last_name' (string): The last name of the contact.
- 'client_contact_phone' (string): The phone number of the contact.
- 'client_contact_email' (string): The email address of the contact.
- 'client_contact_not_site_contact' (boolean): Whether this contact has been marked to not be included as an available site contact. 1 = true, 0 = false.
- '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 client_contact_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 booking to which the resource belongs.
The unique ID of the client contact to which the resource belongs.
Flag indicating whether this contact has been marked to not be included as an available site contact. 1 = true, 0 = false.
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.