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: 5c8acfed-0271-4396-a0f8-18ae816a9f9d 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": "ed6d5f79-d798-44b5-af14-b49a709cf4bb"
}{- "id": "a4db28fd-e181-4b33-a9ec-e6373019637b",
- "externalReference": "a2dd80e5-75d3-495a-bf60-136fd7bcd3f4",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "47411071-2bcb-4144-951e-8fa25c6eba19",
- "lastDownloadedAt": "2026-06-17T06:30:50.6868168+00:00"
}
], - "fileRestrictions": [
- "47411071-2bcb-4144-951e-8fa25c6eba19"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-06-17T06:25:50.6868211+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Remove a recipient from an existing share
| shareId required | string <guid> Example: e5efe738-370c-4520-bfed-c8b368a0c6c2 Unique Share identifier |
| recipientId required | string <guid> Example: b09d1053-077f-4485-9798-874f782f95ae 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: 57660b74-0822-4b41-9f7f-5f5e5646229e Unique Share identifier |
| recipientId required | string <guid> Example: 4d6eeef2-30ef-4acd-8ea7-d7faef68e5ba Unique Recipient identifier |
{- "id": "67bfef25-b725-4640-afee-2438ebd4e84f",
- "externalReference": "8e229831-e8f8-4a16-a3a5-6ac87e4bde85",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "0a7d35d4-815b-4939-86c1-9c8672fd2798",
- "lastDownloadedAt": "2026-06-17T06:30:50.6879957+00:00"
}
], - "fileRestrictions": [
- "0a7d35d4-815b-4939-86c1-9c8672fd2798"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-06-17T06:25:50.688+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Update a recipient from an existing share
| shareId required | string <guid> Example: b5c294d8-22a0-4a6e-b72f-de93381b82b9 The identifier of the share this recipient belongs to |
| recipientId required | string <guid> Example: 6f330d07-5a4d-4a0a-a4b3-b6c336faa8a5 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": "bd4af59b-eddb-4151-8331-2f25b2e44806",
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "sbid",
- "idpId": "5678-1234-3456",
- "nin": "10234567893"
}
], - "notification": {
- "sendEmail": true,
- "sensSms": true,
- "language": null
}
}{- "id": "c0e63ca6-64e6-45b5-bc74-59430cb9f6d3",
- "externalReference": "97322b2c-a210-4cd1-a0ae-005b40e00020",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [ ],
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "sbid",
- "idpId": "5678-1234-3456",
- "nin": "10234567893"
}
], - "loggedInTime": "2026-06-17T06:25:50.6895424+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Send a reminder notification to a specific recipient
| shareId required | string <guid> Example: 648fd7d6-5682-461d-9dd5-ed3a15cdc6f8 Unique Share identifier |
| recipientId required | string <guid> Example: 10638b3b-51ad-486f-875e-0334753aae32 Unique Recipient identifier |
{- "type": null,
- "title": null,
- "status": null,
- "detail": null,
- "instance": null
}Remove a file from the storage
| shareId required | string <guid> Example: b5bb7888-673b-46c5-bb4d-5bd8a39da29d Unique Share identifier |
| fileId required | string <guid> Example: afb3873a-7a02-411d-aa2c-022bfa158fbd 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: 0454b9d4-d552-412a-a280-66eefacd1e03 Unique Share identifier |
[- {
- "id": "1226cde1-b4f9-4b39-a636-fd904466e686",
- "name": "File1",
- "status": "Success",
- "size": 1234,
- "message": null
}, - {
- "id": "236ff701-8eb1-49be-8b87-dee5f71acf41",
- "name": "File2",
- "status": "VirusFound",
- "size": 5023412,
- "message": "This file contains a malicious script"
}, - {
- "id": "fd2c55d4-84f4-47cf-aee1-f31f1079de50",
- "name": "File3",
- "status": "Failed",
- "size": 5678,
- "message": "Something went wrong uploading the file"
}, - {
- "id": "5a8d0e16-70af-4dd4-83d5-aa50c32533ca",
- "name": "File4",
- "status": "Success",
- "size": 69420,
- "message": null
}
]