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
address
Returns websites stored against a record.
Input
{% for links in order.store.links %}
{{ link.address }}
{% endfor %}
Output
www.current-rms.com
type_id
type_id
Returns the link type ID.
ID
Link type
5001
Website
5002
5003
5004
5005
IM
Input
{% for link in order.store.links %}
{{ link.type_id }}
{% endfor %}
Output
5001
type_name
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
Last updated
Was this helpful?