Developer Documentation
Platform Overview
Authentication
API Services
Overview Accounts Accounts: Associations Accounts: Metadata Accounts: Profile Appstore: Users Broker Distributions Broker Tours Consumers Consumers: Linked Agents Contacts Contacts: Activity Contacts: Export Contacts: Tags Contacts: Portal Accounts Developers: Identities Developers: Keys Developers: Authorizations Developers: Billing Summary Developers: Change History Developers: Domains Developers: News Feed Webhooks Developers: Roles Developers: Syndications Developers: Templates Developers: Usage Detail Developers: Usage Summary Devices Flexmls: Email Links Flexmls: Listing Meta Origins Flexmls: Listing Meta Translations Flexmls: Listing Meta Field List Translations Flexmls: Listing Reports Flexmls: Mapping Layers Flexmls: Mapping Shapegen IDX IDX Links Listing Carts Listing Carts: Portal/VOW Carts Incomplete Listings Incomplete Listings: Documents Incomplete Listings: Documents Metadata Incomplete Listings: Document Uploads Incomplete Listings: Floor Plans Incomplete Listings: FloPlans Incomplete Listings: Photos Incomplete Listings: Photos Metadata Incomplete Listings: Photo Uploads Incomplete Listings: Rooms Incomplete Listings: Tickets Incomplete Listings: Units Incomplete Listings: Videos Incomplete Listings: Videos Metadata Incomplete Listings: Virtual Tours Incomplete Listings: Virtual Tours Metadata Listings Listings: Clusters Listings: Documents Listings: Documents Metadata Listings: Floor Plans Listings: FloPlans Listings: Historical Listings: History Listings: Notes Listings: Search Parameters Listings: Open Houses Listings: Photos Listings: Photos Metadata Listings: Photo Uploads Listings: Document Uploads Listings: Rental Calendar Listings: Rooms Listings: Rules Listings: Tour of Homes Listings: Tickets Listings: Units Listings: Validation Listings: Videos Listings: Videos Metadata Listings: Virtual Tours Listings: Virtual Tours Metadata Listing Meta: Custom Fields Listing Meta: Custom Field Groups Listing Meta: Field Order Listing Meta: Field Relations Listing Meta: Property Types Listing Meta: Rooms Listing Meta: Standard Fields Listing Meta: Units Registered Listings Market Statistics News Feed News Feed: Curation News Feed: Events News Feed: Metadata News Feed: Restrictions News Feed: Schedule News Feed: Settings News Feed: Templates Open Houses Overlays Overlays: Shapes Portals Preferences Saved Searches Saved Searches: Provided Saved Searches: Restrictions Saved Searches: Tags Search Templates: Quick Searches Search Templates: Views Search Templates: Sorts Shared Links System Info System Info: Languages System Info: Search Templates
Supporting Documentation
Examples
RESO Web API
RETS
FloPlan
Terms of Use

Listings: Floor Plans

The Listing Floor Plans service returns data about, and links to, floor plan images and files for a listing. A single floor plan may have multiple files associated with it, and these files are grouped by the GroupId attribute.

 
  1. Supported Roles
  2. Available Services
    1. Floor Plans
  3. Floor Plans Description
  4. Expansions
 

Supported Roles

Role Reads Writes Notes
IDX Yes No
Public Yes No
VOW Yes No
Portal Yes No
Private Yes No

More information about roles may be found here.

 

Available Services

FloorPlans

/<API Version>/listings/<Listing.Id>/floorplans
/<API Version>/listings/incomplete/<IncompleteListing.Id>/floorplans

HTTP Method Description Conditional Notes
GET Returns floor plans that are linked to the listing No
POST Returns HTTP 405 (Method Not Allowed) No Not implemented
PUT Returns HTTP 405 (Method Not Allowed) No Not implemented
DELETE Returns HTTP 405 (Method Not Allowed) No Not implemented

GET Request

Parameters:

 

GET Response

{
    "D": {
        "Results": [
          {
                  "Id": "20210524094350000084000000",
                  "MediaKey": "2355.RESOID.20201203215805619564000000",
                  "MediaType": "png",
                  "GroupId": "5447",
                  "Type": "all_in_one_thumbnail_png",
                  "Caption": "123 Ivy Lane",
                  "Uri": "https://api.floplan.io/api/images/d2f8ae12-cda4-4f10-bc55-73ac5a15e09a",
                  "ModificationTimestamp": "2020-12-04T14:00:12Z"
          }, {
                  "Id": "20210524094350000085000000",
                  "MediaKey": "2347.RESOID.20201203215805619564000000",
                  "MediaType": "png",
                  "GroupId": "5447",
                  "Type": "all_in_one_png",
                  "Caption": "123 Ivy Lane",
                  "Uri": "https://api.floplan.io/api/images/8d62740e-8579-4b8a-a918-34842b855cc3",
                  "ModificationTimestamp": "2020-12-04T14:00:12Z"
          }
        ],
        "Success": true
    }
}
 
 

Listing: Floor Plans Description

Attribute Data Type Description
Id Character The locally unique id for the Floor Plan record.
MediaKey Character The ID for this floor plan from the remote system.
MediaType Character The Media Type as defined by IANA. Current types are: png, pdf.
GroupId Character A single floor plan may have multiple file types associated with it. The GroupId groups these records as a single floor plan entity.
Type Character The type of file. One of the following:
  • all_in_one_png: The large all-floors-in-one image.
  • all_in_one_thumbnail_png: The thumbnail of the all-floors-in-one image.
  • all_in_one_pdf: The PDF of the all-floors-in-one image.
Uri Character The URI the floor plan file.
Caption Character A brief description of the floor plan.
ModificationTimestamp Timestamp The last time the floor plan was updated.
 

Expansions

None.