Liquid syntax
  • Welcome
  • Introduction
    • What is Liquid syntax?
    • Liquid operators
    • Liquid objects
    • Liquid tags
    • Liquid filters
    • Best practices
  • Information
    • Attributes
    • Consolidation
    • Custom fields
    • Date filter reference
    • Deal pricing
    • Special items
  • PDF renderer
    • PDF document limitations
  • General
    • Address detail
    • Attachments
    • Company
    • Emails
    • Links
    • Phones
    • Store
  • Activity
    • Activity
  • Inventory Check
    • Inventory check (stock check)
    • Inventory check items (stock check items)
  • Invoices & Credits
    • Invoice
    • Invoice items
    • Invoice transactions
    • Invoice taxes
  • Opportunities
    • Opportunity
    • Opportunity items
    • Opportunity item assets
    • Opportunity item surcharges
    • Opportunity costs
    • Opportunity return item assets
    • Consolidated opportunity items
    • Consolidated opportunities
  • People & Organizations
    • Contact
    • Organization
    • User
    • Vehicle
    • Venue
  • Products
    • Product
    • Product group
    • Charging period
    • Product accessories
    • Product assets
    • Stock level
  • Project
    • Project
  • Purchase orders
    • Purchase order
    • Purchase order items
  • Quarantine
    • Quarantine
  • Service
    • Service
  • Testing & inspection
    • Inspection results
    • Inspection result tasks
Powered by GitBook
On this page
  • address
  • type_id
  • type_name

Was this helpful?

  1. General

Links

The links object contains information about websites for a record.

You may add as many links as you like when creating a store.

Use the links object to return all links against the store.

{% for link in order.store.links %}
  {{ link.address }}
{% endfor %}

address

Returns websites stored against a record.

Input

{% for links in order.store.links %}
  {{ link.address }}
{% endfor %}

Output

www.current-rms.com

type_id

Returns the link type ID.

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

ID

Link type

5001

Website

5002

Facebook

5003

Twitter

5004

LinkedIn

5005

IM

Input

{% for link in order.store.links %}
  {{ link.type_id }}
{% endfor %}

Output

5001

type_name

Returns the link type name.

  • Website

  • Facebook

  • Twitter

  • LinkedIn

  • IM

Input

{% for link in order.store.links %}
  {{ link.type_name }}
{% endfor %}

Output

Website
PreviousEmailsNextPhones

Last updated 4 years ago

Was this helpful?