Clip

'Clip' cards can be grouped into representative cards for collections of various types.
(Currently, Clip cards are limited to travel-related items only.)

Wallet Card type

Wallet card type

Wallet card subtype

clip

businesstrips, trips, others

businesstrips

trips

others

Wallet Card data fields

Attributes

Type

Value

Description

attributes.{fields}

title
String(32)

(Required)
Main title.

subtitle
String(32)

(Optional)
Auxiliary field displays supporting information.

appLinkLogo
String(256)

(Required)
App link image URL.
The file size should not exceed 256 kB.

appLinkName
String(32)

(Required)
App link name.

appLinkData
String(256)

(Required)
Information about the partner app link.

mainImg
String(256)

(Required)
URL for main image.
The file size should not exceed 512 kB.

logoImage
String(256)

(Optional)
Logo image URL to be displayed in card item.
The file size should not exceed 256 kB.

logoImage.darkUrl
String(256)

(Optional)
Logo image URL in dark mode.
The file size should not exceed 256 kB.
* If this value does not exist, logoImage will be substituted.

logoImage.lightUrl
String(256)

(Optional)
Logo image URL in light mode.
The file size should not exceed 256 kB
* If this value does not exist, logoImage will be substituted.

bgColor
String(8)

(Optional)
Color of the card art.
e.g., #00FFFF

fontColor
String(8)

(Optional)
Color of the font on the card art.
Acceptable values: dark, light

blinkColor
String(8)

(Optional)
Color of the blinking effect in the Indicator area.
e.g., #00FFFF

preventCaptureYn
String(1)

(Optional)
Flag whether this wallet card view prevents screen capture.
Either 'Y' or 'N'
* Default: 'N'

noNetworkSupportYn
String(1)

(Optional)
Sets whether to support opening the wallet card under 'No Network' Status.
Either 'Y' or 'N'
* Default: 'N'

providerName
String(32)

(Required)
Provider name.

startDate
Long(13)

(Required)
Start date (Display Start date)
Epoch timestamp in milliseconds.

startDate.utcOffset
String(8)

(Optional)
UTC offset of time at the start point.

startDate.zoneId
String(64)

(Required)
Unique identifier for a timezone as defined by the IANA Time Zone Database. It represents a specific region's timezone, including rules for Daylight Saving Time (DST) and historical changes.
ex) "America/New_York", "Europe/London"

endDate
Long(13)

(Optional)
End date (Display End date)
Epoch timestamp in milliseconds.

endDate.utcOffset
String(8)

(Optional)
UTC offset of time at the end point.

endDate.zoneId
String(64)

(Required)
Unique identifier for a timezone as defined by the IANA Time Zone Database. It represents a specific region's timezone, including rules for Daylight Saving Time (DST) and historical changes.
ex) "America/New_York", "Europe/London"

noticeDesc
String(1024)

(Required)
Notice description.
* Long content is allowed.
* See Additional information format.

country
String(64)

(Optional)
Country to trip.

city
String(64)

(Optional)
City to trip.

Example

{
	"card": {
		"type": "clip",
		"subType": "bizTrip",
		"data": [
			{
				"refId": "clip-001",
				"createdAt": 1672574400000,
				"updatedAt": 1672574400000,
				"language": "en",
				"attributes": {
					"title": "San Fransico Biz Trip",
					"appLinkLogo": "https://../applinklogo.png",
					"appLinkName": "OO Biz",
					"appLinkData": "https://www.oobiz.com",
					"mainImg": "https://../logo.png",
					"logoImage": "https://../main.png",
					"logoImage.darkUrl": "https://../logo.png",
					"logoImage.lightUrl": "https://../logo.png",
					"bgColor": "#00FFFF",
					"fontColor": "#00FFFF",
					"blinkColor": "#00FFFF",
					"providerName": "Samsung-Biz",
					"startDate": 1735041600000,
					"startDate.utcOffset": "UTC+9",
					"endDate": 1735675200000,
					"endDate.utcOffset": "UTC+9",
					"country": "USA",
					"city": "San Fransico"
				}
			}
		]
	}
}