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": "22604af4-56e9-42de-bba4-ad976270e301",
"Name": "sample string 3",
"Url": "sample string 4",
"CreatedAt": "2026-03-13T00:18:15.1660647+02:00",
"ExternalId": "a76acd81-0112-4175-9fdc-c8b9078e2133",
"IsDeleted": true
},
{
"Id": 1,
"OwnerId": "22604af4-56e9-42de-bba4-ad976270e301",
"Name": "sample string 3",
"Url": "sample string 4",
"CreatedAt": "2026-03-13T00:18:15.1660647+02:00",
"ExternalId": "a76acd81-0112-4175-9fdc-c8b9078e2133",
"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-03-13T00:18:15.1660647+02:00</CreatedAt>
<ExternalId>a76acd81-0112-4175-9fdc-c8b9078e2133</ExternalId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<Name>sample string 3</Name>
<OwnerId>22604af4-56e9-42de-bba4-ad976270e301</OwnerId>
<Url>sample string 4</Url>
</AttachmentModel>
<AttachmentModel>
<CreatedAt>2026-03-13T00:18:15.1660647+02:00</CreatedAt>
<ExternalId>a76acd81-0112-4175-9fdc-c8b9078e2133</ExternalId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<Name>sample string 3</Name>
<OwnerId>22604af4-56e9-42de-bba4-ad976270e301</OwnerId>
<Url>sample string 4</Url>
</AttachmentModel>
</ArrayOfAttachmentModel>