GET api/v1/general/{entityId}/attachments
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| entityId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AttachmentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| OwnerId | globally unique identifier |
Required |
|
| Name | string |
Required Max length: 50 |
|
| Url | string |
Required Max length: 512 |
|
| CreatedAt | date |
None. |
|
| ExternalId | globally unique identifier |
None. |
|
| IsDeleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"OwnerId": "62c2b291-b310-4b70-b7cb-97aa1bd04f24",
"Name": "sample string 3",
"Url": "sample string 4",
"CreatedAt": "2026-08-22T12:35:51.0048483+03:00",
"ExternalId": "4e6ad6c6-3419-4fd5-96d0-8ddd4929d0b9",
"IsDeleted": true
},
{
"Id": 1,
"OwnerId": "62c2b291-b310-4b70-b7cb-97aa1bd04f24",
"Name": "sample string 3",
"Url": "sample string 4",
"CreatedAt": "2026-08-22T12:35:51.0048483+03:00",
"ExternalId": "4e6ad6c6-3419-4fd5-96d0-8ddd4929d0b9",
"IsDeleted": true
}
]
application/xml, text/xml
Sample:
<ArrayOfAttachmentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
<AttachmentModel>
<CreatedAt>2026-08-22T12:35:51.0048483+03:00</CreatedAt>
<ExternalId>4e6ad6c6-3419-4fd5-96d0-8ddd4929d0b9</ExternalId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<Name>sample string 3</Name>
<OwnerId>62c2b291-b310-4b70-b7cb-97aa1bd04f24</OwnerId>
<Url>sample string 4</Url>
</AttachmentModel>
<AttachmentModel>
<CreatedAt>2026-08-22T12:35:51.0048483+03:00</CreatedAt>
<ExternalId>4e6ad6c6-3419-4fd5-96d0-8ddd4929d0b9</ExternalId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<Name>sample string 3</Name>
<OwnerId>62c2b291-b310-4b70-b7cb-97aa1bd04f24</OwnerId>
<Url>sample string 4</Url>
</AttachmentModel>
</ArrayOfAttachmentModel>