Introduction
When the user clicks your AppLink
in any of the action menus in Silverfin, they will be sent to the URL you have provided. As part of the redirect, Silverfin will add the following additional parameters in the query string of the request which are accessible to you:
Parameter | Description |
---|---|
firm_id | The id of the firm in the context |
company_id | The id of the company in the context |
object_type | The type of the object in the context (period , permanent_text , permanent_folder , export_file , reconciliation , account_mapping_list , report_template ) |
object_id | The id of the object in the context (the period , permanent_text , permanent_folder , export_file , reconciliation , account_mapping_list , report_template id) |
period_id | The id of the period in the context |
locale | The current user locale (i.e. nl , en ,...) |
Example
If your target_url
is https://www.sample.com/callback
, the user will be sent to https://www.sample.com/callback?firm_id=1232425&company_id=1111&object_type=permanent_text&object_id=2222&period_id=3333&locale=en
. All the parameters will be accessible to you in your request handler.
The exception to the rule
The only parameter added to AppLinks
with placement value firm_landing_action_menu
is the locale