GET api/v1/monographs/lastupdated?startDate={startDate}&endDate={endDate}

Retrieves a list of monographs which had content updated within a date range. Maximum supported timespan is 7 days.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startDate

The starting date from which to look for content updates

date

Required

endDate

The ending date from which to look for content updates

date

Required

Body Parameters

None.

Response Information

Resource Description

Monographs modified within the date range provided

ModifiedMonographsResponse
NameDescriptionTypeAdditional information
lastUpdate

date

None.

count

integer

None.

monographs

Collection of ModifiedMonograph

None.

_links

Collection of Link

None.

_languages

Collection of LanguagesLink

None.

Response Codes

CodeDescriptionAdditional information
200OKThe request returned without error
204No ContentThe request was successful but no results were returned
400Bad RequestA parameter was missing or invalid
404Not FoundThe requested resource was not found

Response Formats

application/json, text/json

Sample:
{
  "_links": [
    {
      "rel": "sample string 1",
      "locale": "sample string 4",
      "href": "sample string 2",
      "templated": true
    },
    {
      "rel": "sample string 1",
      "locale": "sample string 4",
      "href": "sample string 2",
      "templated": true
    }
  ],
  "_languages": [
    {
      "rel": "sample string 1",
      "locale": "sample string 3",
      "name": "sample string 4",
      "href": "sample string 2"
    },
    {
      "rel": "sample string 1",
      "locale": "sample string 3",
      "name": "sample string 4",
      "href": "sample string 2"
    }
  ],
  "lastUpdate": "2024-09-19T00:31:40.8414746-04:00",
  "count": 2,
  "monographs": [
    {
      "cpnum": 1,
      "type": 0,
      "lastUpdate": "2024-09-19T00:31:40.8414746-04:00"
    },
    {
      "cpnum": 1,
      "type": 0,
      "lastUpdate": "2024-09-19T00:31:40.8414746-04:00"
    }
  ]
}

application/xml, text/xml

Sample:
<modifiedMonographResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <_languages>
    <languageslink>
      <rel>sample string 1</rel>
      <locale>sample string 3</locale>
      <name>sample string 4</name>
      <href>sample string 2</href>
    </languageslink>
    <languageslink>
      <rel>sample string 1</rel>
      <locale>sample string 3</locale>
      <name>sample string 4</name>
      <href>sample string 2</href>
    </languageslink>
  </_languages>
  <_links>
    <link>
      <rel>sample string 1</rel>
      <locale>sample string 4</locale>
      <href>sample string 2</href>
      <templated>true</templated>
    </link>
    <link>
      <rel>sample string 1</rel>
      <locale>sample string 4</locale>
      <href>sample string 2</href>
      <templated>true</templated>
    </link>
  </_links>
  <count>2</count>
  <lastUpdate>2024-09-19T00:31:40.8414746-04:00</lastUpdate>
  <monographs>
    <modifiedMonograph>
      <cpnum>1</cpnum>
      <lastUpdate>2024-09-19T00:31:40.8414746-04:00</lastUpdate>
      <type>General</type>
    </modifiedMonograph>
    <modifiedMonograph>
      <cpnum>1</cpnum>
      <lastUpdate>2024-09-19T00:31:40.8414746-04:00</lastUpdate>
      <type>General</type>
    </modifiedMonograph>
  </monographs>
</modifiedMonographResponse>