Set a string to determine a page that the sender is returned to after successfully sending a transaction.  

CSSenderReturnUrl parameter is not compatible in background mode (ds7=1142, apimode=3, qmode=congasign).

Category: Conga Sign

Compatible with: Composer 8

Parameter Name: CSSenderReturnUrl

Parameter Value: http/https site or relative url.

Parameter Requirements: None

Parameter Description: This parameter allows the administrator to configure a return URL within the Conga Composer solution for senders to be returned to after successfully sending a transaction. You must urlEncode the URL that is used in the CSSenderReturnUrl parameter to prevent any subsequent parameters from dropping characters. This can be done using the Salesforce function URLENCODE() within the button. 

Example

  • By using the below example, you are redirected to the Conga Support website after successfully sending a transaction.

    Example

    &cssenderreturnurl={!URLENCODE('https://documentation.conga.com/')}
    CODE
  • By using the below example, you are redirected to the Account record associated with the Opportunity record after successfully sending a transaction.

    Example

    &cssenderreturnurl={!URLENCODE(Opportunity.AccountId)}
    CODE