Endpoints to manage authentication and generate session tokens
Api LiveID+ (2.1.0)
API for third parties integration with LiveID+ video identification platform.
You can subscribe to the LiveID+ service on the Namirial status page to receive updates on important releases.
General conference management endpoints (Version 1)
DEPRECATION NOTICE:
For security reasons, the v1 API endpoints has been deprecated and will be shut down in the upcoming months, starting from TEST environment.- 15/10/2026 - TEST environment
- 15/01/2027 - PRODUCTION environment
Request
Retrieve LiveID+ video identification calls data
Notice: for details about module structure provided in "data" parameter see this ConferenceData response: module structure
Please use the v2 version. See the migration guide for details.
Id of the module to retrieve. If not provided, all the data of the call will be returned.
Token provided on call closing or generated with genAPIToken (if not provided as header)
- Testhttps://liveid.test.namirialtsp.com/api/v1/conferenceData
- Productionhttps://liveid.namirialtsp.com/api/v1/conferenceData
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://liveid.test.namirialtsp.com/api/v1/conferenceData \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"module": "photo",
"token": "string"
}'- application/json
- application/octet-stream
{ "service": "string", "success": true, "call_answer_date": "string", "call_end_date": "string", "call_last_activity": "string", "end_pattern": "N", "operator": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "external_id": "string" }, "data": {} }
Request
Retrieve LiveID zip containing the audit data and identification call photo's.
Please use the v2 version. See the migration guide for details.
Token provided on call closing or generated with genAPIToken (if not provided as header)
- Testhttps://liveid.test.namirialtsp.com/api/v1/getAuditData
- Productionhttps://liveid.namirialtsp.com/api/v1/getAuditData
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://liveid.test.namirialtsp.com/api/v1/getAuditData?idConference=string&av=0&token=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'No contentRequest
Delete all the artifacts (audio, video, photos and shared documents) stored in LiveID+ relative to the served conference id. The textual audit data won't be deleted; to force deleting the audit data and all the data stored in the database is available the "eraseAll" parameters.
If set to "1" will delete all the audit data and all the data stored in the database
Token provided on call closing or generated with genAPIToken (if not provided as header)
- Testhttps://liveid.test.namirialtsp.com/api/v1/deleteAuditData
- Productionhttps://liveid.namirialtsp.com/api/v1/deleteAuditData
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://liveid.test.namirialtsp.com/api/v1/deleteAuditData?idConference=497f6eca-6276-4993-bfeb-53cbbbba6f08&eraseAll=0&token=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "service": "string", "success": true }