GET API/V1/Patients/{patientId}/SessionCoSignatures/{sessionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| patientId | integer |
Required |
|
| sessionId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
iMDsoft.API.Metavision.Data.Forms.SessionCoSignatureBundle| Name | Description | Type | Additional information |
|---|---|---|---|
| SessionId |
Session ID |
globally unique identifier |
None. |
| CoSignatures |
Session co-signatures |
Collection of iMDsoft.API.Metavision.Data.Forms.SessionCoSignature |
None. |
| Success |
Is request successful |
boolean |
None. |
| ValidationError |
Validation error |
iMDsoft.API.Metavision.Data.Forms.ValidationError |
None. |
Response Formats
application/json, text/json
Sample:
{
"sessionId": "8ff6d306-a61f-41c6-a0ad-153b6eb52438",
"coSignatures": [
{
"coSignatureId": "d5fed77e-d99c-46f1-af4d-343f2d8df0d5",
"coSignUserId": 2,
"coSignUserName": "sample string 3",
"coSignDateTime": "2026-05-09T15:55:33.0218061+03:00"
},
{
"coSignatureId": "d5fed77e-d99c-46f1-af4d-343f2d8df0d5",
"coSignUserId": 2,
"coSignUserName": "sample string 3",
"coSignDateTime": "2026-05-09T15:55:33.0218061+03:00"
}
],
"success": true,
"validationError": {
"errorCode": 1,
"description": "sample string 2",
"type": 0
}
}