Room Zone

Subdivide a Room for purposes of selling Booths. You must have the exhibitors or scheduling ConventionPrivilege to access this. Room Zones are accessed via /api/roomzone.

Properties

See "Object Properties" in Introduction for basic shared properties.

Complete details in RoomZoneProperties.

Related Objects

See "Related Objects" in Introduction for how to use them.

convention

The Convention this roomzone belongs to.

room

The Room this zone is in.

Relationships

See "Relationships" in Introduction for how to use them.

booths

The list of Booths attached to this zone.

exhibitors

The list of Exhibitors approved to buy booths in this zone.

Services

The services used to fetch and manipulate room zones.

Search Room Zones

This will search across all conventions. To search on a single convention see "Relationships" in Convention.

 GET /api/roomzone
Optional Params
query

Searches a partial name.

Returns:

 {
    "paging" : {...},
    "items" : [
        {
          "id" : "xxx",
          "name" : "Aisle 100",
          ...
        },
        ...
    ]
 }

Create Room Zone

 POST /api/roomzone
Required Params
convention_id
name

Returns the same as a normal read.

Read Room Zone

 GET /api/roomzone/xxx

Returns:

 {
   "id" : "xxx",
   "name" : "Aisle 100",
   ...
 }

Update Room Zone

 PUT /api/roomzone/xxx

Returns the same as a normal read.

Delete Room Zone

 DELETE /api/roomzone/xxx

Returns:

 {
   "success" : 1
 }