Download OpenAPI specification:Download
https://api.signicat.com/secure-share/The Secure Share API enables you to securely share files with other people in a programmatic way.
You can choose among different levels of security, ranging from weaker methods, such as One-Time Passwords (OTPs), to stronger methods, like using electronic IDs (eIDs).
This REST API uses the OAuth 2.0 protocol for authorisation. All request and response bodies are formatted in JSON.
Before you can start making requests to this API, you need to learn how to connect to it. To do this, see the Connect to Signicat APIs Quick start guide.
Use the Signicat Audit logs service to see documented evidence of the sequence of activities that have affected a system.
When you make an API call to Signicat and an error occurs, you will receive a response message with an error code.
Use the Signicat Events service to automatically receive information about when something happens in one of our services into your system.
Note: This is often referred to as callback.
Create a recipient and add it to an existing share
| shareId required | string <guid> Example: 470f1055-d164-404c-82a2-cafa0512cdc6 The identifier of the share this recipient belongs to |
| firstName | string or null Recipient first name |
| lastName | string or null Recipient last name |
string or null <email> ^[^@]+@[^@]+$ Recipient email. Email is required if mobile is not provided or if it used by authentications or notifications | |
| mobile | string or null Recipient mobile. Mobile is required if email is not provided or if it used by authentications or notifications |
| fileRestrictions | Array of strings or null <guid> [ items <guid > ] A list of file ids that this recipient has access to, if empty, this recipient will have access to all the file from the share |
required | Array of objects (AuthenticationDto) non-empty List of authentication methods for a recipient |
(NotificationDto (object or null)) Recipient notification setup | |
| externalReference | string or null Create a reference to your own system |
{- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "+4771234567",
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "nbid",
- "idpId": "1234-3456-5678",
- "nin": "12345678901"
}
], - "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}, - "externalReference": "aaec9770-be12-4d9f-a0f1-e20883503ad3"
}{- "id": "1fda60d7-0e81-4a12-bd8c-569bf26a19fa",
- "externalReference": "05e68fa2-ac97-47ea-a32c-d38d68ff335d",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "ae2b4f32-120c-44ef-9387-7d439d07a6c0",
- "lastDownloadedAt": "2026-07-30T06:15:38.0046217+00:00"
}
], - "fileRestrictions": [
- "ae2b4f32-120c-44ef-9387-7d439d07a6c0"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-07-30T06:10:38.0046256+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Remove a recipient from an existing share
| shareId required | string <guid> Example: 7cc9db6a-5027-477d-ad3a-a20016779ebd Unique Share identifier |
| recipientId required | string <guid> Example: bf50b07e-b8ee-4efb-934d-11f2b0e49cce Unique Recipient identifier |
{- "type": null,
- "title": null,
- "status": null,
- "detail": null,
- "instance": null
}Get a recipient from an existing share
| shareId required | string <guid> Example: ac0446b6-2c3a-4aa1-9cf6-d901bfadf250 Unique Share identifier |
| recipientId required | string <guid> Example: a78e2ca4-7b5d-4bb2-9d5b-863765bbdfa5 Unique Recipient identifier |
{- "id": "a0c68401-2252-4ca3-b4e6-4ddbc71a34e0",
- "externalReference": "6f91d5a0-63b5-4b92-b207-44ed622445b1",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "468b8840-8245-4824-8fe3-db813771379f",
- "lastDownloadedAt": "2026-07-30T06:15:38.0057406+00:00"
}
], - "fileRestrictions": [
- "468b8840-8245-4824-8fe3-db813771379f"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-07-30T06:10:38.0057456+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Update a recipient from an existing share
| shareId required | string <guid> Example: a66b5c96-7926-430b-a0d8-2b58ba897b8d The identifier of the share this recipient belongs to |
| recipientId required | string <guid> Example: 99fad124-bc1a-4e70-b613-d93670298b96 Unique recipient identifier |
| firstName | string or null Recipient first name |
| lastName | string or null Recipient last name |
string or null <email> ^[^@]+@[^@]+$ Recipient email | |
| mobile | string or null Recipient mobile |
| externalReference | string or null Create a reference to your own system |
| fileRestrictions | Array of strings or null <guid> [ items <guid > ] A list of file ids that this recipient has access to, if empty, this recipient will have access to all the file from the share |
Array of objects or null (AuthenticationDto) List of authentication methods for a recipient | |
(UpdateNotificationDto (object or null)) Recipient notification setup |
{- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "+4771234567",
- "externalReference": "f714fbe7-af0e-43a1-b977-3ac2326b4498",
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "sbid",
- "idpId": "5678-1234-3456",
- "nin": "10234567893"
}
], - "notification": {
- "sendEmail": true,
- "sensSms": true,
- "language": null
}
}{- "id": "caecb04d-6e8c-4e49-84cf-e44bcca28bb4",
- "externalReference": "9b4c9064-b8e3-4098-887a-15b9975bb818",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [ ],
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "sbid",
- "idpId": "5678-1234-3456",
- "nin": "10234567893"
}
], - "loggedInTime": "2026-07-30T06:10:38.0071432+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Send a reminder notification to a specific recipient
| shareId required | string <guid> Example: 41027616-3cb8-48c7-a7c3-26cfcc34be0c Unique Share identifier |
| recipientId required | string <guid> Example: 02fd5af1-8833-4807-9fba-242cce2eb878 Unique Recipient identifier |
{- "type": null,
- "title": null,
- "status": null,
- "detail": null,
- "instance": null
}Remove a file from the storage
| shareId required | string <guid> Example: 878a3057-3948-4963-ac55-51294cdf15e8 Unique Share identifier |
| fileId required | string <guid> Example: 3fa660db-f1c7-4b5c-92cc-1b8e69982b23 Unique File identifier |
{- "type": null,
- "title": null,
- "status": null,
- "detail": null,
- "instance": null
}Upload a file(s) using multipart/form-data request body
| shareId required | string <guid> Example: 304e16fd-16fe-47a6-8fd3-5862b96eba13 Unique Share identifier |
[- {
- "id": "23a827e4-a2b0-4d36-9544-94a3cfba6ae3",
- "name": "File1",
- "status": "Success",
- "size": 1234,
- "message": null
}, - {
- "id": "ee25987a-9fe6-43ec-a357-70e0f8d80d6d",
- "name": "File2",
- "status": "VirusFound",
- "size": 5023412,
- "message": "This file contains a malicious script"
}, - {
- "id": "cb45e95f-1740-4c81-b299-c3ddba512f49",
- "name": "File3",
- "status": "Failed",
- "size": 5678,
- "message": "Something went wrong uploading the file"
}, - {
- "id": "4c4425d0-0e49-4389-9a8b-6c059726b631",
- "name": "File4",
- "status": "Success",
- "size": 69420,
- "message": null
}
]