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: d4c04f07-3a23-4c34-bb4d-a09e1773cbb2 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": "cf9e5302-a873-4a92-9225-dce43b4a0d65"
}{- "id": "974f5bef-af0a-4392-80e6-2b5924324c68",
- "externalReference": "8017aebb-3b6f-4fb7-8b75-72ead0582fe0",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "50eec9ca-9a98-4f00-977a-c7f705b510db",
- "lastDownloadedAt": "2026-07-07T07:49:25.2405634+00:00"
}
], - "fileRestrictions": [
- "50eec9ca-9a98-4f00-977a-c7f705b510db"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-07-07T07:44:25.2405704+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Remove a recipient from an existing share
| shareId required | string <guid> Example: 523bfe7b-6e5f-4f3a-ba17-ccb343f3ddfd Unique Share identifier |
| recipientId required | string <guid> Example: a5131299-dd3f-4936-9111-edcf68b6477a 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: 509e6ba8-c14c-43a7-ab26-52ef0c38c9c2 Unique Share identifier |
| recipientId required | string <guid> Example: a03a9b4a-d0c7-4162-b1a5-4f121a96287c Unique Recipient identifier |
{- "id": "b0abf756-55b5-432b-b354-7ab053979ae0",
- "externalReference": "dc61a3e7-071d-440d-8fd6-0cff648ab928",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "2538a966-0886-4284-9732-59542c2a959f",
- "lastDownloadedAt": "2026-07-07T07:49:25.2422983+00:00"
}
], - "fileRestrictions": [
- "2538a966-0886-4284-9732-59542c2a959f"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-07-07T07:44:25.2423052+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Update a recipient from an existing share
| shareId required | string <guid> Example: e8d45161-9b83-456f-b746-9f6c30746210 The identifier of the share this recipient belongs to |
| recipientId required | string <guid> Example: 0c64f3f6-bbb0-4a2e-a2ca-d3c13e9c4479 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": "bd2a4785-8e0d-46b4-8892-e6cb92741776",
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "sbid",
- "idpId": "5678-1234-3456",
- "nin": "10234567893"
}
], - "notification": {
- "sendEmail": true,
- "sensSms": true,
- "language": null
}
}{- "id": "50fca8b6-2286-4426-93b5-e652826e075b",
- "externalReference": "53f676dc-28a8-49e2-a021-53739427b608",
- "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-07T07:44:25.2442652+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Send a reminder notification to a specific recipient
| shareId required | string <guid> Example: 2969aa94-f64e-4ede-b806-5a8bb6a5560d Unique Share identifier |
| recipientId required | string <guid> Example: f34d1da8-7a43-4509-b43d-dcc3f6af0fd7 Unique Recipient identifier |
{- "type": null,
- "title": null,
- "status": null,
- "detail": null,
- "instance": null
}Remove a file from the storage
| shareId required | string <guid> Example: 8c3ba40c-5186-4b9b-8bbc-b4e7fc570ad8 Unique Share identifier |
| fileId required | string <guid> Example: e2af2746-776e-4ab9-85a7-6b102a2c133b 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: 15800130-2f3a-43b7-b7a9-cf4d535a33ce Unique Share identifier |
[- {
- "id": "2a275780-0286-4049-8ba2-3c1a4b214ea0",
- "name": "File1",
- "status": "Success",
- "size": 1234,
- "message": null
}, - {
- "id": "79e6ff45-e68c-40ac-99ef-0682104aa7e1",
- "name": "File2",
- "status": "VirusFound",
- "size": 5023412,
- "message": "This file contains a malicious script"
}, - {
- "id": "3ff2d1f6-f07f-4eae-8c29-e35062a2fcc9",
- "name": "File3",
- "status": "Failed",
- "size": 5678,
- "message": "Something went wrong uploading the file"
}, - {
- "id": "65e1716d-b35e-41f0-8fcd-bdb4cc6d3432",
- "name": "File4",
- "status": "Success",
- "size": 69420,
- "message": null
}
]