API Documentation

Prerequisites

To access this service, Maritz will provide you with:

  • Authentication credentials (i.e. a username and password). These will usually apply to your entire organization, across multiple events.
  • One or more EventCodes. These are the codes Maritz uses to identify individual events.

Authentication

Access to most services require authentication. The authentication mechanism is HTTP Basic auth over HTTPS. You will be provided with a Username and Password by Maritz to use with all such requests.

NOTE that these services should ONLY ever be accessed via HTTPS, never plain HTTP. You should not rely on HTTP-to-HTTPS redirection.


Entity Feeds

An up-to-date list of available entities can be obtained via a request to the EntitySchema method.

Entities with BaseType="SchemaEntityRoot" are "root-level" feeds that can be requested at Feed*, where * is the entity's Name. Other entities in the list may be found as embedded objects inside other entities within those feeds.


Start each feed by performing a GET request to it, with the EventCode as the "Event" querystring parameter.

Within each response, you will get a list of entities, and a NextSince value. Store the NextSince value in your local database, and put it in the "Since" querystring parameter to get the next page. You have reached the end of the feed (for now) when no entities are returned; sleep for a while, and then check again later.


Each entity has a couple of specific identifiers:

SourceID
The primary ID of the record, by which it will be uniquely identified within its entity type, and event. This value is on the root entity, and all of its descendants. If you do not have a record with a matching SourceID on your side, then this is an INSERT operation, and if you do, then it's an UPDATE (or DELETE, see below).
_id
the internal state identifier for the record. This will ONLY be present on the root entity. If you have a record with a matching SourceID and a matching _id on your side, then the record, and all of its children, are not actually updated; this can happen in certain rare situations. If the _id is missing, then the change is a "soft-delete," and you should delete or deactivate the record on your side.

Meta Entity Feed

This endpoint provides global summary data about all Entity feeds, and can be used to get a list of all events to which you have access, and to speed up the feed process in the case of small incremental updates, where most entity types do not have any updates. This service should be called once, at the beginning of a feed cycle, after the sleep period.

Get the feed summary by performing a GET request to the "FeedMeta" service.

The response document will contain an object whose keys are the event codes, and whose values are the metadata object for each corresponding event. The metadata objects are objects whose keys are the feed types, and whose values are the maximum stamp value for that feed. Feeds that have no data may be omitted.

For each feed, if your local Next Since Value is less than the value in the summary, then there are new records in that feed, and you should start downloading them, by resuming the feed from your local Next Since value. If your local Next Since Value is not less than the value in the summary, then there are no new records in this feed, and you can skip it for this cycle.

Note that you may continue to receive records after you have reached the end of the feed as indicated by the metadata summary value. The metadata summary is a snapshot, and is only valid at the time it is requested, and new records may be added to the feeds at any time, including while they are being retrieved.


Event Metadata Feed

This endpoint provides a list of all events the user has access to, as well as stored metadata about the event such as:

  • Name
  • Timezone
  • Latitude/Longitude (when available)
Other fields may be available as well, depending on the event in question.


Asset File Access

Raw binary files (e.g. for attachments) are accessed via the "Asset" service.

Any entity may contain an array of "Attachment" entities. In addition to metadata about the attachment, these entities will contain a ChunkFileKey field, containing a short string. This string is the key used to retrieve the binary file content.

To fetch file content, perform a GET request to the "Asset" endpoint, with the event code passed as the "Event" querystring parameter, and the Attachment's ChunkFileKey passed as the "Key" querystring parameter.

Note that the binary content for a file with a given key will always be the same, and can be cached forever. This is also true across events: files with the same key, in different events, will still have the same content. If you have already downloaded any file with the same key, you can use your cached copy and do not need to download it again.

You will receive a binary ("application/octet-stream") response with the raw file content. The correct MIME type information may be available in the Attachment metadata (or you may have to probe the contents to infer it).


Code Samples

Sample implementations of consuming a feed in various programming languages are available at