Pre-defined Company and Client Data
Updated over a week ago

Summary:

Data is presented in a one-to-one pairing, with the first half being the variable name and the second half being the entered data. These pairings are part of parent groupings, all of whom contain related information.

Using pre-defined company and client data:

So for example if your clients name was ACME, it would be presented in the following data pairing:

"name": “ACME”

  • If you wanted to add the clients name to a sentence, you would add the parent grouping title to have this overall:

##{{ client_profile.name }}

  • You could then create the following sentence:

Contractor agrees to provide ACME with 12 helical piers.

  • By using:

Contractor agrees to provide ##{{ client_profile.name }} with 12 helical piers.

  • We can continue to customize the same sentence by replacing the term Contractor as well. Using the ##{{ org_profile.name }} the sentence becomes:

##{{ org_profile.name }} agrees to provide ##{{ client_profile.name }} with 12 helical piers

  • Then lastly we can replace the “12 Helical Piers” piece by pulling in the data from the added products to have:

##{{ org_profile.name }} agrees to provide ##{{ client_profile.name }} with {total_quantity} ##{{“category_name” | category_used_products_names }}

The lists below show the various groupings and their available data pairings.

Client Profile Variables:

"client_profile"

"country"

"state"

"county"

"city"

"street"

"zip_code"

"email"

"second_email"

"phone"

"second_phone"

"name"

"job_number"

"support_name"

"support_phone"

"support_email"

"work_site_address"

"country"

"state"

"county"

"city"

"street"

"zip_code"

Organization Profile Variables:

"org_profile"

"country"

"state"

"county"

"city"

"street"

"zip_code"

"email"

"second_email"

"phone"

"second_phone"

"name"

"website"

"logo_image_url"

Main Office Profile Information:

"office_profile"

"country"

"state"

"county"

"city"

"street"

"zip_code"

"email"

"second_email"

"phone"

"second_phone"

"org_id"

"name"

"website"

Did this answer your question?