Module: Eagleplatform::Methods

Defined in:
lib/eagleplatform.rb

Overview

Methods list provided by eaglelatform API

Constant Summary collapse

TRANSLATIONS_GET_LIST =
{ method: "get", path: "/streaming/translations.json"}
TRANSLATION_GET_INFO =
{ method: "get", path: "/streaming/translations/:id.json"}
TRANSLATION_DELETE =
{ method: "delete", path: "/streaming/translations/:id.json"}
TRANSLATION_UPDATE =
{ method: "put", path: "/streaming/translations/:id.json"}
TRANSLATION_GET_STATISTICS =
{ method: "get", path: "/streaming/translations/:id/statistics.json"}
RECORDS_GET_STATISTICS =
{ method: "get", path: "/media/records/statistics.json"}
RECORD_GET_STATISTICS =
{ method: "get", path: "/media/records/:id/statistics.json"}
RECORD_GET_INFO =
{ method: "get", path: "/media/records/:id.json"}
RECORD_UPDATE =
{ method: "put", path: "/media/records/:id.json"}
RECORD_DELETE =
{ method: "delete", path: "/media/records/:id.json"}
RECORD_UPLOAD_FROM_FTP =
{ method: "post", path: "/media/records.json"}
RECORD_UPLOAD_FROM_HTTP =
{ method: "post", path: "/media/records.json"}
FILTER_GET_RECORDS =
{ method: "get", path: "/media/filters/:id.json"}