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:
Previous Deeplink Formats
| old_deep_link_format | description | department |
|---|---|---|
jod://jobs/:locationId | Search Screen per Location selected | marketing |
jod://jobs/:keyword | Search Screen per Keyword selected | marketing |
jod://jobs/:FSC=true | Search Screen of jobs that requires FSC | marketing |
jod://jobs/:JobTypeId | Search Screen per Job Type selected | marketing |
Updated onelink.me Format
| url param | description |
|---|---|
| deep_link_value | screen name in a single word no space |
| deep_link_sub1 | additional values as json url encoded |
| deep_link_sub2-10 | not used |
Possible Link Formats
| url param | description |
|---|---|
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=123 | job 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_idfor 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
}