div#children-section.pageSection
{
display:none;
}
#main_content_override .codeContent, #main_content_override .syntaxhighlighter {
overflow:hidden!important;
}Using a lead's ID to get the owner of the most recent activityUsing the lead's ID, which you have previously retrieved and stored in an existing data source, the SOQL query returns activity date, owner ID and call type for the most recent activity. SOQL query | Data sources |
---|
Code Block |
---|
| SELECT ownerID
FROM Task
WHERE
CallType in ('Inbound', 'Outbound') AND
whoID = '$(Lead|Id)'
ORDER BY ActivityDate desc
LIMIT 1 |
| Task|Assigned To ID |
Using the contact's ID, which you have previously retrieved and stored in an existing data source, the SOQL query returns created date, owner ID and status for the most recent non-closed case. SOQL query | Data sources |
---|
Code Block |
---|
| SELECT ownerID
FROM Case
WHERE
contactID = '$(Contact|Id)' AND
status !='Closed'
ORDER BY CreatedDate desc
LIMIT 1 |
| Case|Owner ID |
Using the contact's ID, which you have previously retrieved and stored in an existing data source, the SOQL query returns opportunity ID, opportunity amount, owner ID, close date and stage for the most non-closed opportunity with the greatest amount value. SOQL query | Data sources |
---|
Code Block |
---|
| SELECT ownerID
FROM Opportunity
WHERE
CONTACT__C = '$(Contact|Id)' AND
StageName not in ('Closed Won', 'Closed Lost')
ORDER BY AMOUNT desc
LIMIT 1 |
| Opportunity|Owner ID
|
Using an account's ID to get the number of undelivered ordersUsing the account's ID, which you have previously retrieved and stored in an existing data source, the SOQL query returns the order ID, order status, and owner ID for the first 10 undelivered orders. SOQL query | Data sources |
---|
Code Block |
---|
| SELECT ID
FROM order
WHERE
accountID = '$(Account|Id)' AND
status__c != 'Delivered'
ORDER BY OrderNumber desc
LIMIT 10 |
| Order(1-10)|Order ID Order(1-10)|Record Count |
Using a zip code and order number to get an order's delivery dateUsing the order number and zip code associated with an order, which you have previously retrieved using IVR Collect Digit String applets, the SOQL query returns the delivery date for the order. SOQL query | Data sources |
---|
Code Block |
---|
| SELECT deliverydate__c
FROM order
WHERE
OrderNumNoZero__c = '$(IVRSlot|OrderNumber)' AND
OrderZip__c like '$(IVRSlot|OrderZip)%'
ORDER BY OrderNumber desc
LIMIT 1 |
| Order|deliverydate__c |
Using an account's ID to get the most recently closed opportunity (within the last 30 days)Using the account's ID, which you have previously retrieved and stored in an existing data source, the SOQL query returns the opportunity ID, amount, owner ID and close date for the opportunity most recently closed within the last 30 days. SOQL query | Data sources |
---|
Code Block |
---|
| SELECT ID, amount, ownerID, closedate
FROM Opportunity
WHERE
AccountID = '$(Opportunity|AccountID)' AND
StageName = 'Closed Won' AND
closedate = LAST_N_DAYS:30
ORDER BY closedate DESC
LIMIT 1 |
| Opportunity|Amount Opportunity|Close Date Opportunity|Opportunity ID Opportunity|Owner ID |
Using a subquery to get the most recently created opportunity for a matched accountUsing the agent's CLID, the SOQL returns the account ID for the first matching account. The subquery returns the opportunity ID and name for the most recently created opportunity related to the matching account. SOQL query | Data sources |
---|
Code Block |
---|
| SELECT Id,(Select Name, id FROM Opportunities order by CreatedDate desc Limit 1)
FROM Account
WHERE Phone ='$(CLID)'
Limit 1 |
| Account.Opportunities|Name Account.Opportunities|Opportunity ID Account|Account ID |
|