Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 536 Bytes

Attachments.md

File metadata and controls

23 lines (18 loc) · 536 Bytes

Attachments

API reference: https://api.immobilienscout24.de/api-docs/import-export/attachment/overview/

Get all attachments

To get all attachments, you need to pass a real estate id.

$attachment = new Attachments();
$attachment->getAllByRealEstate(int $id);

Get a specific attachments

$attachment->getOneById(int $realEstateId, int $id);

Get visible contacts

Get all contacts, that are visible on the profile page

$attachment->getVisibleContacts(int $realEstateId, int $id);