Skip to main content

Appsflyer Onelink

jodgig.onelink.me is the link we use to direct users to a page in the mobile app.

it accepts the following url params:

old_deep_link_formatdescriptiondepartment
jod://jobs/:locationIdSearch Screen per Location selectedmarketing
jod://jobs/:keywordSearch Screen per Keyword selectedmarketing
jod://jobs/:FSC=trueSearch Screen of jobs that requires FSCmarketing
jod://jobs/:JobTypeIdSearch Screen per Job Type selectedmarketing

Updated onelink.me Format

url paramdescription
deep_link_valuescreen name in a single word no space
deep_link_sub1additional values as json url encoded
deep_link_sub2-10not used
url paramdescription
https://jodgig.onelink.me?deep_link_value=search&deep_link_sub1={location_id: 1}search screen with deep_link_sub1 containing the search params
https://jodgig.onelink.me?deep_link_value=job_detail&deep_link_sub1=123job detail screen loading a job with the id in deep_link_sub1

Examples

I want the user to navigate to all the jobs for McDonald's Bedok

  • Get all the location_id for McDonald's Bedok.
  • replace LOCATION_ID in the template below
https://jodgig.onelink.me?deep_link_value=search&deep_link_sub1={location_id: LOCATION_ID}

I am inviting all the users to apply for all the Cashier jobs for NTUC Fairprice.

  • Get company_id for NTUC Fairprice
  • Use the job title in key_word
https://jodgig.onelink.me?deep_link_value=search&deep_link_sub1={company_id: COMPANY_ID, key_word: 'KEY_WORD'}

I want users to navigate to all FSC jobs inside the app.

https://jodgig.onelink.me?deep_link_value=search&deep_link_sub1={food_safety_cert: true}

I want users to navigate to a single job.

https://jodgig.onelink.me?
deep_link_value=job_detail&
deep_link_sub1={
location_id: 1,
key_word: 'cashier'
certificate_id: 1
}