GET ObjectAttachments/{dataSource}/{partnerName}/{objectIdApi}
All attachments for one rental object Mostly JPG images and floor plan, but also PDF and Links The first image in the list is the main picture to be used
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dataSource | DataSourceEnum |
Required |
|
| partnerName | string |
Required |
|
| objectIdApi | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Attachment| Name | Description | Type | Additional information |
|---|---|---|---|
| attachmentMainType |
Gives also rules for public or restricted access |
AttachmentMainType |
None. |
| attachmentSubType |
Normally blank For checlists: MoveIn, MoveOutPreCheck, MoveOutDone, AllCheckLists (only for attachments) |
string |
None. |
| attachmentTitle |
Description of this attacment |
string |
None. |
| seqno |
Order number, the image with seqno = 1 is the main image |
integer |
None. |
| mimetype | string |
None. |
|
| url | string |
None. |
|
| refDate |
Not delivered for images and only for Norway in this version |
date |
None. |
| notificationMainType |
Only for Norway |
NotificationMainType |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"attachmentMainType": 10,
"attachmentSubType": "sample string 1",
"attachmentTitle": "sample string 2",
"seqno": 3,
"mimetype": "sample string 4",
"url": "sample string 5",
"refDate": "2025-12-12T02:15:22.4106569+01:00",
"notificationMainType": 0
},
{
"attachmentMainType": 10,
"attachmentSubType": "sample string 1",
"attachmentTitle": "sample string 2",
"seqno": 3,
"mimetype": "sample string 4",
"url": "sample string 5",
"refDate": "2025-12-12T02:15:22.4106569+01:00",
"notificationMainType": 0
}
]
application/xml, text/xml
Sample:
<ArrayOfAttachment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HeimModel">
<Attachment>
<attachmentMainType>Image</attachmentMainType>
<attachmentSubType>sample string 1</attachmentSubType>
<attachmentTitle>sample string 2</attachmentTitle>
<mimetype>sample string 4</mimetype>
<notificationMainType>Unknown</notificationMainType>
<refDate>2025-12-12T02:15:22.4106569+01:00</refDate>
<seqno>3</seqno>
<url>sample string 5</url>
</Attachment>
<Attachment>
<attachmentMainType>Image</attachmentMainType>
<attachmentSubType>sample string 1</attachmentSubType>
<attachmentTitle>sample string 2</attachmentTitle>
<mimetype>sample string 4</mimetype>
<notificationMainType>Unknown</notificationMainType>
<refDate>2025-12-12T02:15:22.4106569+01:00</refDate>
<seqno>3</seqno>
<url>sample string 5</url>
</Attachment>
</ArrayOfAttachment>