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: c79ab9d4-25f7-4bca-b32b-b5a156a65ce6 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": "909155f3-4efd-4649-a87f-b9932ea7995d"
}{- "id": "88f6d2d7-4220-42c7-87b5-53bdd908d487",
- "externalReference": "f3177b54-ef38-4d24-9cdb-f15db28cb066",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "67ca955e-b28e-4a37-a939-df63c82b49e7",
- "lastDownloadedAt": "2026-08-19T13:17:32.5016578+00:00"
}
], - "fileRestrictions": [
- "67ca955e-b28e-4a37-a939-df63c82b49e7"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-08-19T13:12:32.5016641+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Remove a recipient from an existing share
| shareId required | string <guid> Example: 90cfbb9e-3cef-4fbc-a053-eacadb1cebea Unique Share identifier |
| recipientId required | string <guid> Example: f93900a9-5a5f-4424-8b22-4ad6a864fee9 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: b05fb9e7-8871-4d98-8573-6c8a2544a384 Unique Share identifier |
| recipientId required | string <guid> Example: c9fb4efa-6fd9-453d-9c97-973bed8f026e Unique Recipient identifier |
{- "id": "1e6a0ff3-2a8d-416f-90e5-0c51554d8a91",
- "externalReference": "07d1722f-6cce-4a2c-b2b0-5c8d13027e1a",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [
- {
- "id": "1cad35ae-c576-41ee-9860-23c2c61dc019",
- "lastDownloadedAt": "2026-08-19T13:17:32.5030829+00:00"
}
], - "fileRestrictions": [
- "1cad35ae-c576-41ee-9860-23c2c61dc019"
], - "authentication": [
- {
- "identityProvider": "otp-sms",
- "idpId": null,
- "nin": null
}, - {
- "identityProvider": "otp-email",
- "idpId": null,
- "nin": null
}
], - "loggedInTime": "2026-08-19T13:12:32.5030877+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Update a recipient from an existing share
| shareId required | string <guid> Example: 5d90de91-d067-4339-baa9-8553513c8024 The identifier of the share this recipient belongs to |
| recipientId required | string <guid> Example: a94e95a0-e863-468b-bbec-d4280fa9d6b7 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": "68c0bc4f-454f-4a29-9752-c98aa4eade6b",
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "sbid",
- "idpId": "5678-1234-3456",
- "nin": "10234567893"
}
], - "notification": {
- "sendEmail": true,
- "sensSms": true,
- "language": null
}
}{- "id": "2c4a6708-5ef2-469a-9ecd-d69d5ab9fd2b",
- "externalReference": "abe00f2f-33ad-444e-b671-3d7eaf9dd602",
- "firstName": "John",
- "lastName": "Johnson",
- "email": "john.johnson@signicat.com",
- "mobile": "0777777777",
- "fileAccessInfos": [ ],
- "fileRestrictions": [ ],
- "authentication": [
- {
- "identityProvider": "sbid",
- "idpId": "5678-1234-3456",
- "nin": "10234567893"
}
], - "loggedInTime": "2026-08-19T13:12:32.5049781+00:00",
- "url": null,
- "notification": {
- "sendEmail": true,
- "sendSms": true,
- "language": "En"
}
}Send a reminder notification to a specific recipient
| shareId required | string <guid> Example: 79e35339-9e6e-4df9-b1b4-be93a9c865f8 Unique Share identifier |
| recipientId required | string <guid> Example: 4585e810-d315-429d-b86c-5bd35038f307 Unique Recipient identifier |
{- "type": null,
- "title": null,
- "status": null,
- "detail": null,
- "instance": null
}Remove a file from the storage
| shareId required | string <guid> Example: 4be0d458-62ad-476f-9b84-0d8a0ca656ed Unique Share identifier |
| fileId required | string <guid> Example: d719eeda-3205-4393-8be6-841d44afcc7e 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: f3d54211-6743-47eb-985d-8d07be7e75a9 Unique Share identifier |
[- {
- "id": "1176f0be-77ce-445d-8e3d-7725ea1c0d4b",
- "name": "File1",
- "status": "Success",
- "size": 1234,
- "message": null
}, - {
- "id": "c6f73da8-0b1b-468a-ae39-23a252cda14c",
- "name": "File2",
- "status": "VirusFound",
- "size": 5023412,
- "message": "This file contains a malicious script"
}, - {
- "id": "5adc2db7-b22c-4ab2-a35e-7163123cc079",
- "name": "File3",
- "status": "Failed",
- "size": 5678,
- "message": "Something went wrong uploading the file"
}, - {
- "id": "85cbcc31-8d0e-4b97-a117-80e6d2b634e4",
- "name": "File4",
- "status": "Success",
- "size": 69420,
- "message": null
}
]