Return to documentation index

manual_sections

The manual_sections API retrieves a list of PDF manuals for Tastevin.

Parameters

  • api_key (string) Required - The API key for the account
  • last_updated_at (datetime) Optional - If this parameter is supplied, only sections whose last edited date is after the supplied date and time will be returned. The parameter should be formatted as "YYYY-MM-DD HH:MM:SS" and will be interpreted as a UTC date and time value. Sections with an updated_at value of null will not be included if this parameter is supplied.

Response

The manual_sections API returns a JSON array of manual_sections. Each member of the array includes these attributes:

  • id - Unique identifier.
  • ordinal - The order of the section within the overall manual.
  • title - The name to be used for the section on the table of contents.
  • url - URL where the actual PDF file may be downloaded.
  • updated_at - The date that this section was last edited. May be null.

Sample Request

https://dashboard.onpremisewine.com/manual_sections.json?api_key=ABCDEF123456

Sample Response

{
  "manual_sections": [
    {
      "id": 1,
      "ordinal": 1,
      "title": "Editing Filters for Billboard Buttons",
      "url": "https://5e62b0450435076f5745-22df557b72e5f01dbb676de630a5db4e.ssl.cf2.rackcdn.com/manual/FilterEditing.pdf",
      "updated_at": "2013-05-08T05:34:48-07:00"
    },
    {
      "id": 2,
      "ordinal": 2,
      "title": "Connecting Tastevin to Social Media",
      "url": "https://5e62b0450435076f5745-22df557b72e5f01dbb676de630a5db4e.ssl.cf2.rackcdn.com/manual/SocialMediaConnections.pdf",
      "updated_at": "2013-05-08T05:34:48-07:00"
    }
  ]
}