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": "47c39137-771e-4f46-86a4-f7e443001af7",
"Name": "sample string 3",
"Url": "sample string 4",
"CreatedAt": "2025-12-10T17:31:30.3628897+02:00",
"ExternalId": "6e12afa6-39b8-4519-9cf1-d966aba34227",
"IsDeleted": true
},
{
"Id": 1,
"OwnerId": "47c39137-771e-4f46-86a4-f7e443001af7",
"Name": "sample string 3",
"Url": "sample string 4",
"CreatedAt": "2025-12-10T17:31:30.3628897+02:00",
"ExternalId": "6e12afa6-39b8-4519-9cf1-d966aba34227",
"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>2025-12-10T17:31:30.3628897+02:00</CreatedAt>
<ExternalId>6e12afa6-39b8-4519-9cf1-d966aba34227</ExternalId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<Name>sample string 3</Name>
<OwnerId>47c39137-771e-4f46-86a4-f7e443001af7</OwnerId>
<Url>sample string 4</Url>
</AttachmentModel>
<AttachmentModel>
<CreatedAt>2025-12-10T17:31:30.3628897+02:00</CreatedAt>
<ExternalId>6e12afa6-39b8-4519-9cf1-d966aba34227</ExternalId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<Name>sample string 3</Name>
<OwnerId>47c39137-771e-4f46-86a4-f7e443001af7</OwnerId>
<Url>sample string 4</Url>
</AttachmentModel>
</ArrayOfAttachmentModel>