GET

Frequency - 01.Read

Returns details of a frequency.

Important

Calls to this method must include the cookie .LawPanel.AuthCookie in order to identify you at user level. For more details about authentication please check this link. To obtain the cookie you can use the method Login.

Request URL

Request parameters

string

The frequency ID.

Request headers

string
Subscription key which provides access to this API.

Response 200

Returns a frequency representation.

  • string id: The ID for the frequency.
  • string name: Frequency human-readable name.
  • string unit_name: Frequency unit human-readable name.
  • integer years: How many years has this frequency?.
  • integer months: How many months has this frequency?.
  • integer days: How many days has this frequency?.
  • integer hours: How many hours has this frequency?.
  • integer minutes: How many minutes has this frequency?.
  • integer seconds: How many seconds has this frequency?.
  • integer total_in_seconds: How many seconds has in total this frequency?.

Loading...
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "unit_name": {
      "type": "string"
    },
    "years": {
      "type": "integer"
    },
    "months": {
      "type": "integer"
    },
    "days": {
      "type": "integer"
    },
    "hours": {
      "type": "integer"
    },
    "minutes": {
      "type": "integer"
    },
    "seconds": {
      "type": "integer"
    },
    "total_in_seconds": {
      "type": "integer"
    }
  }
}
* See getting started for more information on how to use this API. You can also check the API change history.