Timeline Tags
#340260
Description
Resource
/timeline-tags
Supported Operations
Table: Timeline Tags Supported Operations
Operation |
HTTP Method |
Input |
Output |
Description |
Get Timeline Tags |
GET /timeline-tags |
None |
The timeline definition for the four predictive timeframes. |
Table: Timeline Tags Resource Elements
Element |
Type |
Description |
<tag> |
Complex, as specified in the Description |
For each timeframe tag, provides the following as defined in Administration > Timeline Definition:
The above information is defined for each timeframe tag <tag>, which are constants and defined as "7D", "30D", "60D" and "90D". |
Examples
Example: Getting the Timeline Tags
The following example shows you how to get the timeline tags that are in use.

Request:
GET /timeline-tags
Response:
{
"90D": {
"short_name": "24",
"long_name": "24 Months",
"offset": 720,
"order_index": 4,
"date": 1451538000000,
"rounding": "RND_NM"
},
"30D": {
"short_name": "3",
"long_name": "3 Months",
"offset": 90,
"order_index": 2,
"date": 1396238400000,
"rounding": "RND_NM"
},
"60D": {
"short_name": "12",
"long_name": "12 Months",
"offset": 360,
"order_index": 3,
"date": 1420002000000,
"rounding": "RND_NM"
},
"7D": {
"short_name": "1",
"long_name": "1 Month",
"offset": 30,
"order_index": 1,
"date": 1391144400000,
"rounding": "RND_NM"
}
}