GET api/pro/clinics/{clinicId}/clinic-libraries/{clinicLibraryId}
Gets a ClinicLibrary account by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clinicId |
The id of the Clinic |
string |
Required |
| clinicLibraryId |
The id of the ClinicLibrary |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Return the ClinicLibrary with the specified id.
ClinicLibraryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| ClinicId | string |
None. |
|
| Name | string |
None. |
|
| BlobMetadata | BlobMetadataDto |
None. |
|
| Archived | boolean |
None. |
|
| EntityActivity | EntityActivityDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"ClinicId": "sample string 2",
"Name": "sample string 3",
"BlobMetadata": {
"FileVersion": "sample string 1",
"Properties": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
},
"Archived": true,
"EntityActivity": {
"LastModifiedDate": "2025-12-16T12:36:29.0110119+00:00",
"CreatedDate": "2025-12-16T12:36:29.0110119+00:00",
"LastModifiedBy": "sample string 3",
"CreatedBy": "sample string 4"
}
}