Import Links
No code import links to accept files anywhere.
Use Import Links to accept files from your users without a website or an app. Create an import page in just a few clicks and share the link with your users—no code required. It is an alternative to using one of our libraries and integrating it with your website.
After you have created all the necessary columns go to the 'Settings' tab on the Template Settings page. Find the Import Link of the template. It will look something like this:
https://upload.pulter.co?templateId=cl6q9lmji2146jk99hftyui87
Simply share this link with your users to start collecting data imports.
You can configure the query parameters in the link to identify and match the users with their respective imports. You can also add as many query parameters as you want to help you identify the users in your platform. All the query parameter asides from the
userId
will be pushed to your destination along with the uploaded data as a metadata object.userId query parameter will be pushed to your destination along with the uploaded data as a user object. Apart from userId, you can add as many custom attributes as you want in the
&key=value
format. Example:https://upload.pulter.co?templateId=cl6q9lmji2146jk99hftyui87?userId=1a2b3c4d5e6f&fname=John&lname=doe&company=Google
Webhook sample response for above
{
"id": "clewr9x160001bxowssfzcznm",
"templateId": "cl6q9lmji2146jk99hfc01rea",
"index": 1,
"count": 1,
"totalRows": 1000,
"event_name": "all",
"data": [
{
"last_name": "Rodmann",
"age": "44",
"email": "[email protected]",
"__index": "ee6add27-e2c1-44f7-8ab2-08a6e0423206",
},
......
],
"user": {
"id": "1a2b3c4d5e6f"
},
"metadata": {
"fname": "John",
"lname": "doe",
"company": "Google",
}
}
Open Importer modal automatically
The Importer link page contains a button that you have to click to open the Importer modal. But if you want the Importer modal to be displayed automatically when a user opens the, you can pass
isOpen
URL parameter to the Importer link. Example below.https://upload.pulter.co?templateId=cl6q9lmji2146jk99hftyui87&isOpen=true
Customizing the Importer Link
Upgrade to the Starter plan to theme your Importer with custom colors and styles. You can customize your importer link from the Pulter dashboard by clicking on
Branding
tab on the template settings page.png?alt=media&token=94947b03-d17b-4337-a02a-dce7b2217b99)
Customize your Importer link
Last modified 6mo ago