[REWST - TASK] PSA-KaseyaBMS: List Company Locations
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
{{-
[
{
"id": location.id,
"label": location.name
}
for location in CTX.company_locations
] | unique(attribute="id")| sort(attribute='label')
-}}{{-
[
{
"name": location.name,
"id": location.id,
"original_object": "psa_contact_location",
"company_id": location.accountId,
"is_main": location.isMain,
"address_line_1": location.addressLine1|d,
"address_line_2": location.addressLine2|d,
"city": location.city|d,
"state": location.stateReference.name|d,
"postcode": location.zip|d
}
for location in CTX.company_locations
if location.id|string == CTX.psa_location_id|string
]
-}}