Arlo

REST Auth API: EventLogistics

EventLogistics resources are a subresource of Event, and describe organisational details for an event such as catering and room arrangement instructions.

EventLogistics instance resource

Resource URI

/api/2012-02-01/auth/resources/events/{EventID}/logistics/

Resource properties

Property Description
CateringSetup A string describing the basic catering setup to use for the event, up to 128 characters long. This brief one-line description is designed to be used in summary reports.
RoomSetup A string describing the required room arrangement or layout to use for the event, up to 128 characters long. This brief one-line description is designed to be used in summary reports.
CateringDetails An inline RichContent resource representing extended instructions for caterers of the event.
RoomSetupDetails An inline RichContent resource representing extended instructions for room layout and/or setup for the event.

HTTP GET

Returns a representation of an EventLogistics resource, including the properties above.

Example

GET /api/2012-02-01/auth/resources/events/456/logistics/

<EventLogistics>
  <CateringSetup>Buffet lunch</CateringSetup>
  <RoomSetup>Classroom layout with projector</RoomSetup>
  <CateringDetails>
    <ContentType>text/plain</ContentType>
    <Content><![CDATA[Vegetarian and gluten-free options required.]]></Content>
  </CateringDetails>
  <RoomSetupDetails>
    <ContentType>text/plain</ContentType>
    <Content><![CDATA[Require access to room one hour prior to start to setup projector.]]></Content>
  </RoomSetupDetails>
  <Link rel="self" type="application/xml" href="https://demo.arlo.co/api/2012-02-01/auth/resources/events/456/logistics/"/>
</EventLogistics>

HTTP POST

Not supported.

HTTP PUT

Not supported.

HTTP DELETE

Not supported.