# Quick Start
Follow these steps to get started within minutes.
# Before you start
If you don't have an account already, you need to create a free Signicat account:
Also, if you need to, learn how to create and use API tokens.
# Step 1: Open postman or similar tool
Our developers like to use Postman. It can be downloaded from https://www.getpostman.com (opens new window).
# Step 2: Set authorisation to OAuth 2.0
- Click Get New Access token
- Add your credentials
- Request and use token
# Step 3: Create a share
Use the Create share endpoint. Include the request sample below (body raw → application/json), or create your own sample. In the response, you'll get an id
. You'll use this ID now when you upload files to the share in the next step.
POST https://api.signicat.io/share/buckets/
Request sample
{
"information": {
"title": "Title",
"description": "Description of the filshare"
},
"content": [
{
"id": "1",
"name": "testing1.pdf",
"type": "file"
}
],
"recipients": [
{
"firstName": "Tony",
"lastName": "Stark",
"email": "customeremail@signicat.io",
"expires": "2019-05-25T11:42:13.0568771+00:00",
"mobile": {
"countryCode": "47",
"number": "12334568"
},
"uploads": [
"1"
],
"authentication": [],
"notification": {
"setup": {
"request": "SendBoth",
"reminder": "Off"
},
"language": "NO"
},
"oneTimeLogin": false
}
]
}
# Step 4: Upload a file
For this step, use the Upload content endpoint. Fill in {id}
with the ID of the share (returned in the response in step 3), and {fileId}
with the unique identifier that you want to assign to the content being uploaded.
POST https://api.signicat.io/share/{id}/file/{fileId}
Additionally, follow these steps to attach the file you want to upload:
- Body raw → form-data
- Change key from text → File
- Use the file picker to chose the files you want to add
- Click Send
Repeat this process if you want to upload multiple files to the share (remember to change the unique {fileId}
for each one).
# Step 5: Receive secure share
You will receive an email/SMS on the email or phone number you specified earlier. In production, this email/SMS will be sent to your users. To see what the process is like for an end-user, open the link and log in with one of the available ID methods. You can now download the files.
← Overview Create share →