Subscription List
From the subscription section on the right side of the City Pass homepage, click "More" to enter the subscribed messages list window. This displays all the push notifications from the services you have subscribed to.
/subscription/item-list
Messages that have been read will appear in grayscale; unread messages will have a dot on the left side of the message, indicating they haven't been read yet.
Data Display
API Design
For the subscription list page, the field definitions for the JSON format are as follows. Simply follow the specifications during development. The complete JSON format is shown below:
JSON
{
"//": "Subscribed City Information List",
"data": [
{
"id": "sub-item-1",
"type_id": "sub-3",
"type_name": "Traffic Measures",
"is_read": false,
"date": "2024/10/11",
"description": "In response to the traffic control due to construction on Ningbo West Street every weekend from October 11 to October 27, 2024, bus adjustments will be made. For details, please see the Public Transportation Office press release\n<a href='https://pto.gov.taipei/News_Content.aspx?n=D065CCB1467288C8&s=38C541A6FB02530E&sms=72544237BBE4C5F6' target='_blank'>https://pto.gov.taipei/News_Content.aspx?n=D065CCB1467288C8&s=38C541A6FB02530E&sms=72544237BBE4C5F6</a>"
},
{
"id": "sub-item-2",
"type_id": "sub-3",
"type_name": "Traffic Measures",
"is_read": false,
"date": "2024/10/09",
"description": "National Day fireworks traffic control, from 19:40 to 20:20 on 10/10, Xinyi Road, Shifu Road, and Songzhi Road will be controlled. For \"Taipei 101 Building National Day Fireworks\" safety control measures, please see the Taipei City Government Information Network:\n<a href='https://pto.gov.taipei/News_Content.aspx?n=D065CCB1467288C8&s=38C541A6FB02530E&sms=72544237BBE4C5F6' target='_blank'>https://pto.gov.taipei/News_Content.aspx?n=D065CCB1467288C8&s=38C541A6FB02530E&sms=72544237BBE4C5F6</a>"
},
{
"id": "sub-item-3",
"type_id": "sub-1",
"type_name": "Sports Park",
"is_read": false,
"date": "2024/07/01",
"description": "2024 CTC CUP World DanceSport Open Championship 💃 - July 6th at Taipei Arena"
}
]
}
Data Field Description
data
Field | Usage | Example |
---|---|---|
id | Subscription service message ID | sub-item-1 |
type_id | Subscription service type ID | sub-3 |
type_name | Subscription service type name | Traffic Measures |
is_read | Indicates whether the message is read | true/false |
date | Message push notification time | 2024/10/09 |
description | Subscription service message content, can contain HTML format for displaying links, etc. | In response to the traffic control due to construction on Ningbo West Street every weekend from October 11 to October 27, 2024, ... |