- Joined
- Jan 18, 2026
- Messages
- 7
- Reaction score
- 1
Note: am happy with just a pointer to whichever doc it is that I haven't found yet ... but is there a list of valid variables available to be used in the ContactURL?
I'm doing a custom template that does almost everything i want it to do, included below ...
I call in, the First/Lastname gets populated into the 'dial window', and when I answer, I get the pop up ... caller gets filled in right, but called comes out blank ... so that variable isn't useful ... although, looking more closely, the URL in the pop up isn't what I have below:
Is there a way to setup ContactURL to send both of those values to the PopUp?
And, while I'm here ... is there a way to have the PopUp happen "On Ring' instead of "On Answer"? And again, if its something that I should have found in the docs and didn't, happy with just a pointer to what I missed ...
Thanks ...
I'm doing a custom template that does almost everything i want it to do, included below ...
I call in, the First/Lastname gets populated into the 'dial window', and when I answer, I get the pop up ... caller gets filled in right, but called comes out blank ... so that variable isn't useful ... although, looking more closely, the URL in the pop up isn't what I have below:
Is there a way to setup ContactURL to send both of those values to the PopUp?
And, while I'm here ... is there a way to have the PopUp happen "On Ring' instead of "On Answer"? And again, if its something that I should have found in the docs and didn't, happy with just a pointer to what I missed ...
Thanks ...
<?xml version="1.0" encoding="utf-8"?>
<Crm xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Country="US" Name="PrivaraCRM" Version="40" SupportsEmojis="true" SupportsTranscription="true" ListPageSize="0">
<Number Prefix="AsIs" MaxLength="11" />
<Connection MaxConcurrentRequests="2" />
<Parameters />
<Authentication Type="No" />
<Scenarios>
<Scenario Id="" Type="REST" EntityId="" EntityOrder="">
<Request SkipIf="" Url="https://crm.myurl.com/api/3cx-search?number=[Number]" MessagePasses="0" Message="" RequestContentType="" RequestEncoding="UrlEncoded" RequestType="Get" ResponseType="Json" />
<Rules>
<Rule Type="Any" Ethalon="">id</Rule>
</Rules>
<Variables>
<Variable Name="ContactID" LookupValue="" Path="id"><Filter /></Variable>
<Variable Name="FirstName" LookupValue="" Path="firstname"><Filter /></Variable>
<Variable Name="LastName" LookupValue="" Path="lastname"><Filter /></Variable>
<Variable Name="PhoneMobile" LookupValue="" Path="phone"><Filter /></Variable>
</Variables>
<Outputs AllowEmpty="false">
<Output Type="ContactID" Passes="0" Value="[ContactID]" />
<Output Type="FirstName" Passes="0" Value="[FirstName]" />
<Output Type="LastName" Passes="0" Value="[LastName]" />
<Output Type="PhoneMobile" Passes="0" Value="[PhoneMobile]" />
<Output Type="ContactUrl" Passes="0" Value="https://crm.myurl.com/call-popup?caller=[Number]&amp;called=[CalledNumber]" />
<Output Type="EntityId" Passes="0" Value="[ContactID]" />
<Output Type="EntityType" Passes="0" Value="Contacts" />
</Outputs>
</Scenario>
</Scenarios>
</Crm>