API v1 reference

The Amilia API allows an organization or partner to fetch data for reporting and integration. It also allows pushing information to Amilia. The API follows RESTful principles and returns JSON.

BASE URL
https://app.amilia.com
/PublicApi/{rewriteUrl}/{language}/

Tags

The tags API allows you to retrieve the list of tags you have defined in Amilia. You can then fetch activities provided a tag. Tags can be defined in your Amilia Account under Tags and then attached to your activities.

#

Get tags

Returns a list of tags ordered by id


PARAMETERS
rewriteUrl (string)

Unique, url-friendly organization token. Part of base url

Required
language (string)

Language in which the localizable values should be returned. Part of base url. Value is either 'fr' or 'en'

Required
CODE SAMPLE JSON
[
  {
    "Id": 0,
    "Name": "Morning",
    "Color": "yellow",
    "Icon": "fa-ticket"
  },
  {
    "Id": 0,
    "Name": "Morning",
    "Color": "yellow",
    "Icon": "fa-ticket"
  }
]