Skip to main content

Setting Up EnrollHere Target in Ringba

Step-by-step guide to setting up an EnrollHere Target in Ringba

Updated over 5 months ago

How to Set Up an EnrollHere Target in Ringba

Step 1: Name the Target

  • Enter the Target Name in the “Name” field.

Step 2: Configure SIP Endpoint

  • Select SIP as the Type.

  • Input the case-sensitive SIP Endpoint exactly as provided.

  • Important: SIP endpoints are never all lowercase—double-check for correct capitalization.

Step 3: Set Business Hours

  • Leave the Business Hours open unless instructed otherwise.

  • Note: CC (Concurrency Cap), Geo, and HOO (Hours of Operation) are handled via the ping.

  • If availability is detected, calls can be sent (refer to the Call Acceptance Parsing section).

Step 4: Configure Conversion Criteria

  • Use the provided conversion criteria:

    • Conversion Type: Static

    • Static Revenue Amount: Set as provided by EnrollHere.

    • Conversion Call Length Value: Set as provided by EnrollHere.

Step 5: Configure the Ping Request

  • Paste the provided PING URL in the Request Settings.

  • The URL will be pre-populated with the necessary parameters:

    phone=&state=&zip=
  • Use one of the following token formats to pass values dynamically:

    Option 1: Collecting Additional Details Under USER

    phone=[tag:InboundNumber:Number-NoPlus]&zip=[tag:User:zipcode]&state=[tag:User:state]

    Option 2: Generic Token Format

    phone=[tag:InboundNumber:NumberE164]&state=[tag:InboundNumber:State] &zip=[tag:Geo:Zipcode]

Step 6: Configure Call Acceptance Parsing

  • Under Parsing Expression, use one of the following JavaScript expressions:

    Option 1: Based on Availability

    input = JSON.parse(input);
    return input.available == true;

    Option 2: Based on Count

    input = JSON.parse(input);
    return input.count > 0;


Did this answer your question?