Venue

The venue object contains information about a venue record.

Venues are saved addresses that you deliver to frequently. When creating an opportunity, you can choose a venue to populate the delivery address quickly.

When a record has a venue associated with it, you may access venue objects. This is handy for printing contact information or linked venue contacts.

Members

Contacts, organizations, vehicles, venues, and users are all known as members in the database. Members have some shared attributes, along with attributes that are specific to that particular member type.

When you're checking a list of members, you can use the type object to determine what type of member you're working with.

For example, the participants object against an opportunity returns participant objects for any members who are participants on the opportunity. To print only venues:

<ul>
  {% for participant in order.participants %}
    {% if participant.type == "Venue" %}
      <li>{{ participant.name }}</li>
    {% endif %}
  {% endfor %}
</ul>

Document layouts

The venue object can be accessed in document layouts created against the following modules:

Member

From a venue record:

Opportunity

Where a venue is set against an opportunity:

To print venues that are are bookable resources for service items:

Invoice

Where a venue is set against an invoice:

Purchase order

Where a venue is set against a purchase order:

Project

Where a venue is set against a project:

Discussion templates

The venue object can be accessed in discussion templates created against the following modules:

Member

From a venue record:

Opportunity

Where a venue is set against an opportunity:

To print venues that are are bookable resources for service items:

Invoice

Where a venue is set against an invoice:

Purchase order

Where a venue is set against a purchase order:

Project

Where a venue is set against a project:

activities

Returns activity objects for the activities relating to a venue.

Input

Output

Activity

address

Returns a venue's primary address.

Input

Output

address_detail

Returns address objects for a venue's primary address.

Input

Output

Address detail

attachments

Returns attachment objects for attachments stored against a venue.

Input

Output

Attachments

description

Returns a venue's description.

Input

Output

email

Returns the first work email address stored against a venue.

Input

Output

emails

Returns email objects for email addresses stored against a venue.

Input

Output

Emails

icon_url

Returns a URL pointing at the venue's picture. The full size image is returned.

Input

Output

image_attachments

Returns attachment objects for attachments stored against a venue. Only returns those that have a file type of image.

Input

Output

Attachments

id

Returns a venue ID.

The ID is an internal reference for a record. It's not exposed in our web interface.

Input

Output

live_purchase_orders

Returns purchase order objects for purchase orders against a venue. Only live purchase orders are returned.

Input

Output

location_type

Returns a venue's location type ID.

Type

Location type

0

Internal

1

External

Input

Output

location_type_name

Returns a venue's location type name.

  • Internal

  • External

Input

Output

mobile

Returns a venue's cell phone number. The first telephone number with the type “cell” or “mobile” is returned.

Input

Output

name

Returns a venue's name.

Input

Output

phones

Returns telephone objects for telephone numbers stored against a venue.

Input

Output

Phones

purchase_tax_class_name

Returns the purchase tax class name against a venue.

Input

Output

telephone

Returns a venue's telephone. The first telephone number with the type “work” is returned.

Input

Output

Last updated

Was this helpful?