1# Appendix: Standard Intent Access Specifications 2## Media Domain 3### Playing Videos 4Requests to play a video. It supports parameters such as video entities and episode information, and returns the playback result status. 5 6**Intent name**: PlayVideo 7 8**Since**: 1.0.1 9 10**Parameters** 11 12| Name| Type | Mandatory| Description | Example Data| 13|-------------|--------|------|------------------|---------| 14| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters.| "12949589" | 15| episodeId | string | No | Episode ID. | "285786" | 16| episodeNumber | number | No | Target episode number. Unit: episode. | 5 | 17| extras | object | No | Other extended parameters, which can be customized. | - | 18 19**Return value** 20 21| Name | Type | Mandatory| Description | Example Data| 22| ------ | ----- |----- |------------------------------------| -------- | 23| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 24| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 25 26### Playing a Playlist 27 28Requests to play music from a specified playlist, with filtering options by scene, city, and other criteria, and returns the playback result status. 29 30**Intent name**: PlayMusicList 31 32**Since**: 1.0.2 33 34**Parameters** 35 36| Name| Type | Mandatory| Description | Example Data| 37|--------------|-----------|-------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------| 38| entityId | string | No| Intent entity ID, with a maximum of 64 characters. | "C10194368" | 39| entityGroupId | string | No| UI form of the playlist. The value can be customized and cannot exceed 64 characters. | "C10194321312" | 40| sceneType | string | No | Scene type.<br>- MORNING_SCENE: morning.<br>- MIDDAY_SCENE: midday.<br>- EVENING_SCENE: evening.<br>- NIGHT_SCENE: night.<br>- WEEKEND_SCENE: weekend.<br>- FESTIVAL_SCENE: holiday.<br>- BIRTHDAY_SCENE: birthday.<br>- ANNIVERSARY_SCENE: anniversary.<br>- DRIVE_SCENE: driving.<br>- SUBWAY_SCENE: subway.<br>- TRAVEL_SCENE: travel.<br>- CITY_SCENE: inter-city travel.| "MORNING_SCENE" | 41|city | string | No| City name. | "Beijing"| 42 43**Return value** 44 45| Name| Type | Mandatory| Description | Example Data| 46| ------ | ---- | ---- |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-| 47| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. The details are as follows:<br>- 100060101: Playing member-only or paid songs is not supported.<br>- 100060102: The account has expired and there are no preview clips for the song.<br>- 100060201: Playback is not supported for songs that have child protection enabled, are associated with a child account, or are marked as inappropriate.<br>- 100060202: The playlist has been removed and cannot be played.<br>- 100060203: The song's copyright on this platform has expired and therefore the song cannot be played.<br>- 100060301: The song/artist has been added to the blocklist and therefore the song cannot be played.<br>- 100060401: The software is faulty.| 100060101 | 48| result | object | Yes | Result object, which is returned in the form of key-value pairs, with a maximum of 8000 characters. | {"musicSize":"4M","dataReceiveTime":1704868765000} | 49 50### Playing Audio Programs 51 52Requests to play a specified audio program, with filtering options by intent entity ID and audio program ID, and returns the playback result status. 53 54**Intent name**: PlayAudio 55 56**Since**: 1.0.1 57 58**Parameters** 59 60| Name| Type| Mandatory| Description | Example Data| 61|---------|----------|--------|-------------------------------------------------------------|----------| 62| entityId | string | Yes| Intent entity ID, with a maximum of 64 characters.| "AD1019465754" | 63| soundId | string | No| Audio program ID, with a maximum of 64 characters. This parameter is mandatory for an attempt to access the second version of the framework.| "324535435" | 64 65**Return value** 66 67| Name| Type | Mandatory| Description | Example Data| 68| ------| ----- | ---- |-------------------------------------------------------------------------------------------------------------------------------------------------------| -------- | 69| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.<br>[Error type 1] No resources:<br>- 100070101: The software is faulty.| 100070101 | 70| result | object | Yes | Result object, which is returned in the form of key-value pairs, with a maximum of 8000 characters. | {"AudioSize":"4M","dataReceiveTime":102154151} | 71 72 73## Entertainment Domain 74### Playing Games 75 76Initiates or queries game-related operations, such as starting a game, obtaining game status, and executing in-game actions. It returns the operation result status and data, enabling users to interact with games or retrieve game-related information. 77 78**Intent name**: PlayGame 79 80**Since**: 1.0.1 81 82**Parameters** 83 84| Name| Type | Mandatory| Description | Example Data| 85|-------------|--------|------|------------------|---------| 86| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 87 88**Return value** 89 90| Name | Type | Mandatory| Description | Example Data| 91| ------ | ----- |----- |------------------------------------| -------- | 92| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 93| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 94 95## Navigation Domain 96### Starting Navigation 97Initiates a navigation request. You can set the departure location, destination, waypoints, destination type, and transportation mode. It is suitable for various travel scenarios including driving, walking, cycling, bus, and subway. 98 99**Intent name**: StartNavigate 100 101**Since**: 1.0.1 102 103**Parameters** 104 105| Name| Type| Mandatory| Description | Example Data| 106|-------------|-----|--------|----------------------------------------------------------------------------------|---------| 107| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "12949589" | 108| srcLocation | object | No | Departure location information, which contains the following fields:<br>- **locationSystem**: coordinate system (GCJ-02 by default).<br>- **poiId**: unique ID of a POI.<br>- **locationName**: location name.<br>- **longitude**: longitude.<br>- **latitude**: latitude.<br>- **address**: detailed address information. | {<br> "locationSystem": "GCJ02",<br> "poiId": "1236",<br> "locationName": "Beijing Railway Station",<br> "latitude": "39.902895",<br> "longitude": "116.427915",<br> "address": "Beijing Railway Station, Dongcheng District, Beijing"<br>} | 109| dstLocation | object | No | Destination information, which contains the following fields:<br>- **locationSystem**: coordinate system (GCJ-02 by default).<br>- **poiId**: unique ID of a POI.<br>- **locationName**: location name.<br>- **longitude**: longitude.<br>- **latitude**: latitude.<br>- **address**: detailed address information. | {<br> "locationSystem": "GCJ02",<br> "poiId": "1248",<br> "locationName": "Beijing West Railway Station",<br> "latitude": "39.89534",<br> "longitude": "116.32128",<br> "address": "Beijing West Railway Station, Fengtai District, Beijing"<br>} | 110| wayPoints | array | No | Waypoints array. When invoked via the voice entry, Array\<PoiLocation> is mandatory. The fields contained in the waypoints are the same as those in **srcLocation**. A maximum of five waypoints can be passed. | [{<br> "locationSystem": "GCJ02",<br> "poiId": "1445",<br> "locationName": "Qianmen East Street Community",<br> "latitude": "39.89995",<br> "longitude": "116.35628",<br> "address": "Qianmen Street, Dongcheng District, Beijing"<br>}] | 111| dstLocationType | string | No | Destination type, for example, "home" or "company". | "Home"| 112| trafficType | string | No | Mode of transportation.<br>- Drive: driving (default value).<br>- Walk: walking.<br>- Cycle: cycling.<br>- Bus: bus.<br>- Subway: subway.| "Cycle" | 113 114**Return value** 115 116| Name | Type | Mandatory| Description | Example Data| 117| ------ | ---- | ---- |------------------------------------| -------- | 118| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 119| result | object| Yes | Result list object. If the result list is empty, an empty value is returned.| - | 120 121### Viewing Transportation Card Code 122Requests to display the user's subway or bus transportation card QR code, with options to specify the transportation type (subway or bus) and city code. It is suitable for public transportation scenarios. 123 124**Intent name**: ViewTravelCardCode 125 126**Since**: 1.0.1 127 128**Parameters** 129 130| Name| Type | Mandatory| Description | Example Data| 131|-------------|---------|-------|----------------------------------------------------------------------------------------------|---------| 132| travelCardType | string | No| Type of transportation. By default, the type last viewed by the user is used (implementation-dependent).<br>- Metro: subway.<br>- Bus: bus. | "Metro" | 133| adminCode | number | No| City code where the user is located. The default value is the user's current city. The city codes of China are used. For details, see [City Codes and Administrative Division Codes](https://developer.huawei.com/consumer/en/doc/harmonyos-references-V5/map-citycode-V5).| 320500 | 134 135**Return value** 136 137| Name | Type | Mandatory| Description | Example Data| 138| ------ | ------| ---- |------------------------------------------------------------------| -------- | 139| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 140| result | object | Yes | Result object, which is returned in the form of key-value pairs, with a maximum of 8000 characters.| - | 141 142### Ride Hailing 143Initiates a ride-hailing request. You can set the pick-up location, destination, vehicle type, and entry channel ID. It is suitable for multiple ride-hailing scenarios, such as economy cars, taxis, and carpooling. 144 145**Intent name**: RideHailing 146 147**Since**: 1.0.1 148 149**Parameters** 150 151| Name| Type | Mandatory| Description | Example Data| 152|-------------|--------|---------|--------------------------------------------------------------------------------|---------| 153| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "12949589" | 154| srcLocation | object | No | Pick-up location information, which contains the following fields:<br>- **locationSystem**: coordinate system (GCJ-02 by default).<br>- **poiId**: unique ID of a POI.<br>- **locationName**: location name.<br>- **longitude**: longitude.<br>- **latitude**: latitude.<br>- **address**: detailed address information.| {<br> "locationSystem": "GCJ02",<br> "poiId": "1245",<br> "locationName": "Beijing Railway Station",<br> "latitude": "39.902895",<br> "longitude": "116.427915",<br> "address": "Beijing Railway Station, Dongcheng District, Beijing"<br>} | 155| dstLocation | object | No | Destination information, which contains the following fields:<br>- **locationSystem**: coordinate system (GCJ-02 by default).<br>- **poiId**: unique ID of a POI.<br>- **locationName**: location name.<br>- **longitude**: longitude.<br>- **latitude**: latitude.<br>- **address**: detailed address information.| {<br> "locationSystem": "GCJ02",<br> "poiId": "1232",<br> "locationName": "Beijing West Railway Station",<br> "latitude": "39.89534",<br> "longitude": "116.32128",<br> "address": "Beijing West Railway Station, Fengtai District, Beijing"<br>} | 156| dstLocationType | string | No | Destination type, for example, "home" or "company". | "Home"| 157| hwChannelId | string | No | Channel ID for the entry point.<br>- "0x00000100": Celia Suggestions.<br>- "0x00000200": Celia Voice.<br>- "0x00000300": drag-and-drop entry.| "0x00000100" | 158| taxiType | number | No | Vehicle type. The default value is **0**.<br>- 0: default.<br>- 1: economy car.<br>- 2: taxi.<br>- 3: carpooling.<br>- 4: hitchhiking.<br>- 5: premium car. | 1 | 159 160**Return value** 161 162| Name | Type| Mandatory| Description | Example Data| 163| ------ | -----| ---- |------------------------------------| -------- | 164| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 165| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 166 167### Viewing Flight Tickets 168Requests detailed information about a flight ticket, including basic information such as cabin class. 169 170**Intent name**: ViewFlightTicket 171 172**Since**: 1.0.1 173 174**Parameters** 175 176| Name | Type| Mandatory| Description | Example Data | 177| -------- | -------- | ---- |-----------------------| ---------- | 178| entityId | number | Yes | Intent entity ID, which is the ID of the flight ticket. | 1 | 179| cabin | string | No | Cabin class.<br>- Economy class.<br>- First class.<br>- Business class.<br>- Premium economy class.| "Economy class" | 180 181**Return value** 182 183| Name | Type | Mandatory| Description | Example Data| 184| ------ | ------| ---- |------------------------------------------------------------------| -------- | 185| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 186| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 187 188### View Train Tickets 189Requests detailed information about a train ticket, including basic information such as seat type. 190 191**Intent name**: ViewTrainTicket 192 193**Since**: 1.0.1 194 195**Parameters** 196 197| Name| Type | Mandatory| Description | Example Data| 198|---------|--------|---------|--------------------------------------------------------------------------------------------------|---------| 199| entityId | number | Yes | Intent entity ID, which is the ID of the train ticket. | 1 | 200| seatLevelShow | string | No | Seat type.<br>- Second-class seat.<br>- Second-class sleeper.<br>- First class seat.<br>- First-class sleeper.<br>- Business class seat.<br>- Hard seat.<br>- Soft seat.<br>- Hard sleeper.<br>- Soft sleeper.<br>- Deluxe soft sleeper.<br>- Standing room only.| "Second class seat"| 201 202**Return value** 203 204| Name | Type| Mandatory| Description | Example Data| 205| ------ | -----| ---- |------------------------------------| -------- | 206| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 207| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 208 209### Viewing a Map 210Requests map data of a specified type, supporting multiple map types (for example, satellite, standard, and 3D maps) and returning map-related information. 211 212**Intent name**: ViewMap 213 214**Since**: 1.0.1 215 216**Parameters** 217 218| Name| Type| Mandatory| Description | Example Data| 219|---------|-------|-------|---------------------------------------------------------------|---------| 220| mapType | string | No | Map type.<br>- Satellite: satellite map.<br>- Standard: standard map (default).<br>- 3D: 3D map.| "Satellite" | 221 222**Return value** 223 224| Name | Type| Mandatory| Description | Example Data| 225| ------ | -----| ---- |------------------------------------| -------- | 226| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 227| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 228 229### Viewing Subway Crowding Information 230 231Obtains real-time crowding information for subway lines or stations to assist with trip planning. 232 233**Intent name**: ViewMetroCrowdingInfo 234 235**Since**: 1.0.1 236 237**Parameters** 238 239N/A 240 241**Return value** 242 243| Name| Type | Mandatory| Description | Example Data | 244|------|----|----|---------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| 245| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 246| result | object | Yes | Result object, which is returned in the form of key-value pairs, with a maximum of 8000 characters.| {"lines": <br>[{"name": "Line 1", "crowding": "Lightly crowded"},<br>{"name": "Line 2", "crowding": "Moderately crowded"}]<br>} | 247 248### Viewing Real-Time Bus Route 249 250Queries real-time arrival information for specified bus lines in a city or area, helping users plan their trips by providing bus operation status. 251 252**Intent name**: ViewRealTimeBusRoute 253 254**Since**: 1.0.2 255 256**Parameters** 257 258| Name| Type| Mandatory| Description| Example Data| 259|-----|--------|----|------|----------| 260| lineName | string | No | Bus line name/number.| "1", "Zicun Line 4"| 261| province | string | No | Province name.| "Guangdong"| 262| city | string | No | City name.| "Shenzhen"| 263| district | string | No | District or county name.| "Bao'an District"| 264 265**Return value** 266 267| Name| Type| Mandatory| Description | Example Data | 268|-------|-----|----|------------------------------------|-------------------------------------------------------------------------------------------------------| 269| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 270| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 271 272### Finding Electric Bicycles 273 274Queries and locates nearby electric bicycles, returning a list of available bicycles with basic information and status to help users quickly find usable electric bicycles. 275 276**Intent name**: FindEBicycle 277 278**Since**: 1.0.2 279 280**Parameters** 281 282N/A 283 284**Return value** 285 286| Name| Type| Mandatory| Description | Example Data | 287|--------|---------|--------|------------------------------------|----------------------------------------| 288| code | number | Yes| Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 289| result | object | Yes| Result list object. If the result list is empty, an empty value is returned.| - | 290| entityId | string | Yes| Execution instance ID. | "E11112222" | 291| entityName | string | Yes| Execution result entity name, which is fixed. | "ExecutionResult" | 292| entityLogoURL | string | Yes| URL of the main image for the execution result. | `"https://example.com/bike_image.jpg"` | 293| entityDisplayName | string | Yes| Display name (main title) of the execution result. | "XXX Street, Dongcheng District, Beijing" | 294| entityDescription | string | No| Description of the execution result entity. | - | 295| statusImageUrl | string | No| URL of the status image for the execution result. | `"https://example.com/status_image.jpg"` | 296 297### Viewing the Airport Large Screen 298 299Obtains flight dynamics of a specified airport. It supports filtering of flight data by airport code and arrival/departure status, providing users with real-time airport flight operation status. 300 301**Intent name**: ViewAirportLargeScreen 302 303**Since**: 1.0.1 304 305**Parameters** 306 307| Name| Type| Mandatory| Description | Example Data| 308|----------|----------|----|------------------------------------------|----------| 309| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C1132342432" | 310| airportCode | string | No| Three-letter airport code. | "PEK" | 311| inOutStatus | string | No| Arrival/Departure status.<br>- Arr: arrival.<br>- Dep: departure (default value).| "Dep" | 312 313**Return value** 314 315| Name| Type| Mandatory| Description | Example Data | 316|--------|--------|----------|------------------------------------|-----------| 317| code | number | Yes| Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 318| result | object | Yes| Result list object. If the result list is empty, an empty value is returned.| - | 319 320### Viewing the Real-Time Airport Status 321 322Obtains real-time operation status information of a specified airport, including flight dynamics and arrival/departure status. It helps passengers stay informed about airport operations and plan their trips accordingly. 323 324**Intent name**: ViewAirportStatus 325 326**Since**: 1.0.1 327 328**Parameters** 329 330| Name| Type| Mandatory| Description | Example Data| 331|----------|----------|----|----------------------------------------|----------| 332| entityId | string | No | Unique ID of the airport entity. | "2132432432" | 333| airportCode | string | No| Three-letter airport code. | "PEK" | 334| inOutStatus | string | No| Arrival/Departure status.<br>- Arr: arrival.<br>- Dep: departure (default value).| "Dep" | 335 336**Return value** 337 338| Name| Type| Mandatory| Description | Example Data | 339|------|-----|-----|------------------------------------|--------| 340| code | number | Yes| Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 341| result | object | Yes| Result list object. If the result list is empty, an empty value is returned.| - | 342 343### Setting an Electric Bicycle Lock 344Remotely locks or unlocks an electric bicycle, returning the operation result in real time and providing bicycle status information (such as the main title, description, and status image) to help users conveniently manage bicycle security. 345 346**Intent name**: SetEBicycleLock 347 348**Since**: 1.0.2 349 350**Parameters** 351 352| Name| Type | Mandatory| Description | Example Data | 353|-------------|--------|----|-------------------------------------|-------------| 354| operationType | string | Yes | Operation type.<br>- Lock: Lock the bicycle.<br>- Unlock: Unlock the bicycle.| "Lock" | 355 356**Return value** 357 358| Name | Type | Mandatory| Description | Example Data | 359| ------ | ----- |----- |------------------------------------|---------------------| 360| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 361| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 362| entityId | string | Yes | Intent entity ID. | "E11112222" | 363| entityName | string | Yes | Execution result entity name, which is fixed. | "ExecutionResult" | 364| entityLogoURL | string | Yes | URL of the main image for the execution result. | `"http://xxxx.png"` | 365| entityDisplayName | string | Yes | Display name (main title) of the execution result. | "Bicycle status" | 366| entityDescription | string | No | Description of the execution result entity. | "Unlocked" | 367| statusImageUrl | string | No | URL of the status image for the execution result.| `"http://xxxx.png"` | 368 369### Setting an Electric Bicycle Seat 370Remotely locks or unlocks an electric bicycle seat, returning the operation result in real time and providing seat status information (such as the main title, description, and status image) to help users conveniently manage the seat status. 371 372**Intent name**: SetEBicycleSeat 373 374**Since**: 1.0.2 375 376**Parameters** 377 378| Name| Type | Mandatory| Description | Example Data | 379|-------------|--------|----|-------------------------------------|-------------| 380| operationType | string | Yes | Operation type.<br>- Lock: Lock the seat.<br>- Unlock: Unlock the seat.| "Unlock" | 381 382**Return value** 383 384| Name | Type | Mandatory| Description | Example Data | 385| ------ | ----- |----- |------------------------------------|---------------------| 386| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 387| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 388| entityId | string | Yes | Intent entity ID. | "E11112222" | 389| entityName | string | Yes | Execution result entity name, which is fixed. | "ExecutionResult" | 390| entityLogoURL | string | Yes | URL of the main image for the execution result. | `"http://xxxx.png"` | 391| entityDisplayName | string | Yes | Display name (main title) of the execution result. | "Bicycle status" | 392| entityDescription | string | No | Description of the execution result entity. | "Unlocked" | 393| statusImageUrl | string | No | URL of the status image for the execution result.| `"http://xxxx.png"` | 394 395### Obtaining Electric Bicycle Device Information 396Queries the device status information of an electric bicycle, allowing users to obtain basic vehicle information (such as battery level and mileage) or tire pressure details to help users monitor real-time vehicle operation status and handle exceptions promptly. 397 398**Intent name**: GetEBicycleDeviceInfo 399 400**Since**: 1.0.1 401 402**Parameters** 403 404| Name| Type | Mandatory| Description | Example Data | 405|-------------|--------|----|------------------------------------------------------------------------------|-------------| 406| infoType | string | No | Type of information to retrieve.<br>- CarInfo: bicycle information (including the mileage and battery level). This is the default value.<br>- TirePressureInfo: tire pressure information (device name + tire pressure information).| "CarInfo" | 407 408**Return value** 409 410| Name | Type | Mandatory| Description | Example Data | 411| ------ |--------|----|---------------------------------------------|----------------------| 412| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 413| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 414| entityId | string | Yes | Intent entity ID. | "C10194368" | 415| entityName | string | Yes | Name of the execution result entity, BicycleInfo. | "EBicycleDeviceInfo" | 416| deviceName | string | Yes | Device name. | "My Niu Bike" | 417| batteryLevel | number | No | Remaining battery level, in units of percentage (%). | 30 | 418| remainingMileage | number | No | Remaining mileage, in units of KM. | 20 | 419| tirePressureInfo | object | No | Tire pressure information, including recommended tire pressure, overall status, and individual tire pressure details (tire name/pressure value/unit).| {<br>"status":"Normal", // Normal if all tire pressures are normal; Abnormal otherwise.<br> "suggestedTirePressureInfo": "Officially recommended tire pressure range is xx BAR - xx BAR",<br>"items": [{<br>"tireName": "Front tire",<br>"tirePressureValue": 1.4,<br>"unit": "BAR"<br>},<br>{<br>"tireName": "Rear tire",<br>"tirePressureValue": 1.6,<br>"unit": "BAR"<br>}]} | 420 421### Viewing Electric Bicycle Battery 422Queries the remaining battery level of an electric bicycle, helping users learn the battery level in real time for trip planning or timely charging. 423 424**Intent name**: ViewEBicycleBattery 425 426**Since**: 1.0.1 427 428**Parameters** 429 430| Name| Type | Mandatory| Description | Example Data | 431|-------------|--------|----|-----------------------|-------------| 432| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 433 434**Return value** 435 436| Name | Type | Mandatory| Description | Example Data| 437| ------ | ----- |----- |------------------------------------| -------- | 438| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 439| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 440 441## Lifestyle Domain 442### Viewing Logistics 443Queries express delivery logistics information. It supports searches by tracking number or express ID, and returns the latest logistics status of the delivery. 444 445**Intent name**: ViewLogistics 446 447**Since**: 1.0.1 448 449**Parameters** 450 451| Name| Type| Mandatory| Description | Example Data| 452|-------------|-------|-------|----------------------------------|---------| 453| trackingNo | string | No| Express tracking number, with a maximum of 64 characters. If empty, the home page is always displayed. | "784314526686"| 454| entityId | string | No| Intent entity ID, with a maximum of 64 characters. In query scenarios, this field is used by default.| "784314526686"| 455 456**Return value** 457 458| Name | Type| Mandatory| Description | Example Data| 459| ------ | ---- | ---- |----------------------------------------| -------- | 460| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 461| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 462 463### Sending Packages 464Initiates a courier service request. The system parses the request and returns the shipping operation result. 465 466**Intent name**: SendLogistics 467 468**Since**: 1.0.1 469 470**Parameters** 471 472| Name| Type| Mandatory| Description | Example Data| 473|-------------|--------|-------|------|---------| 474| sendContent | string | No| Shipping information.| "Send a package to Zhang San via Kuaidi 100. Address: Happy Community, Chaoyang District, Beijing. Phone: 12345678901"| 475 476**Return value** 477 478| Name | Type| Mandatory| Description | Example Data| 479| ------ | -----| ---- |----------------------------------------| -------- | 480| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 481| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 482 483### Recharging Phone Bills 484Provides mobile phone top-up services. It supports recharge operations via phone number and specified amount, and returns the result of the recharge. 485 486**Intent name**: RechargeCallFee 487 488**Since**: 1.0.1 489 490**Parameters** 491 492| Name| Type| Mandatory| Description | Example Data| 493|-------------|--------|-------|-----|---------| 494| phoneNumber | number | No| Phone number.| 12345678901 | 495| amount | number | No| Amount, in units of CNY. | 100 | 496 497**Return value** 498 499| Name | Type| Mandatory| Description | Example Data| 500| ------ | ---- | ---- |--------------------------| -------- | 501| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 502| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 503 504### Obtaining Dinning Numbers 505 506Retrieves available table numbers from a restaurant's reservation or queuing system. Table numbers can be filtered by party size and table type, helping users quickly find suitable dining spots. 507 508**Intent name**: GetDinningNumber 509 510**Since**: 1.0.1 511 512**Parameters** 513 514| Name| Type | Mandatory| Description | Example Data| 515|----------|--------|----|--------------------------------------------------------------|----------| 516| number | number | No | Number of diners. Unit: person. | 5 | 517| tableType | number | No | Table type.<br>- 1: small table.<br>- 2: medium table type.<br>- 3: large table.<br>- 4: private room.| 3 | 518 519**Return value** 520 521| Name| Type| Mandatory| Description | Example Data| 522|-----|-----|----|------------------------------------|----------| 523| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 524| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| {"items": [{"tableNumber": "A12", "tableType": 3, "capacity": 6}]} | 525 526### Reserving Dinning Tables 527 528Reserves a dining table in a restaurant system for a specified date and time. Tables can be filtered by party size, table type, date, and time slot to meet personalized dining needs. 529 530**Intent name**: ReserveDinningTable 531 532**Since**: 1.0.1 533 534**Parameters** 535 536| Name| Type| Mandatory| Description | Example Data| 537|---------|----------|----|-------------------------------------------------|----------| 538| number | number | No | Number of diners. Unit: person. | 5 | 539| tableType | number | No| Table type.<br>- 1: small table.<br>- 2: medium table type.<br>- 3: large table.<br>- 4: private room.| 3 | 540| date | string | No| Dining date. | "2024-11-30" | 541| timeInterval | array | No| Dining time period, including the timestamp of the start time and end time.<br>Field type: number. | [1637393200000, 1637396800020] | 542| remark | string | No| Dining remarks, such as dining preferences. | - | 543 544**Return value** 545 546| Name| Type| Mandatory| Description | Example Data| 547|-----|-----|----|------------------------------------|---| 548| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 549| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| -| 550 551### Recharging Data Bills 552 553Provides mobile data recharge services, supporting recharge operations via phone number and amount to meet the mobile data needs of individual and enterprise users. 554 555**Intent name**: RechargeTraffic 556 557**Since**: 1.0.1 558 559**Parameters** 560 561| Name| Type| Mandatory| Description | Example Data| 562|---------|----------|-----|------|----------| 563| phoneNumber | number | No | Phone number.| 12345678901 | 564| amount | number | No | Amount, in units of CNY. | 100 | 565 566**Return value** 567 568|Name| Type| Mandatory| Description | Example Data| 569|-----|-----|----|------------------------------------|----| 570| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 571| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 572 573### Viewing Phone Bills 574 575Queries the user's phone bill information, supporting bill record filtering by date to help users track their usage of calls, SMS, and data. 576 577**Intent name**: ViewPhoneBill 578 579**Since**: 1.0.1 580 581**Parameters** 582 583| Name| Type | Mandatory| Description| Example Data| 584|------|--------|----|------|----------| 585| date | string | No | Query date.| "2024-05-01" | 586 587**Return value** 588 589|Name| Type| Mandatory| Description | Example Data| 590|-----|-----|----|------------------------------------|----| 591| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 592| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 593 594### Viewing Phone Number Benefits 595 596Queries the benefits and services associated with a specified phone number, including package discounts, value-added services, and bonus points, to help users fully understand the benefits of their phone number. 597 598**Intent name**: ViewPhoneNumberBenefits 599 600**Since**: 1.0.1 601 602**Parameters** 603 604N/A 605 606**Return value** 607 608| Name| Type| Mandatory| Description | Example Data| 609|--------|------|----|------------------------------------|----------| 610| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 611| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 612 613### Viewing Provident Fund Information 614 615Queries detailed information about an individual's housing provident fund account, including account balance, contribution records, and loan status. This helps users comprehensively grasp their provident fund status and supports decision-making for related services. 616 617**Intent name**: ViewProvidentFundInfo 618 619**Since**: 1.0.1 620 621**Parameters** 622 623N/A 624 625**Return value** 626 627| Name| Type| Mandatory| Description| Example Data| 628|-------|-----|----|----------|------| 629| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 630| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 631 632### Viewing Social Security Information 633 634Queries multi-dimensional information about an individual's social insurance account, including pension income and expenditure, social security contribution records, account balance, and insurance certificates. This helps users fully understand their social security entitlements and status. 635 636**Intent name**: ViewSocialSecurityInfo 637 638**Since**: 1.0.2 639 640**Parameters** 641 642| Name | Type | Mandatory| Description | Example Data | 643|----------|--------|----|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------| 644| type | string | No | Social security function.<br>- "ProofOfPension": pension income certificate.<br>- "PensionPaymentDetails": pension payment details.<br>- "SocialSecurityPaymentRecord": social security contribution records.<br>- "SocialSecurityBalance": social security balance.<br>- "SupplementaryPension": pension supplementary payment.<br>- "PensionInsurance": pension insurance (home page).<br>- "SocialSecurityCertificate": certificate of social security.| "ProofOfPension" | 645 646**Return value** 647 648| Name | Type| Mandatory| Description | Example Data| 649| ------ | ---- | ---- |------------------------------------| -------- | 650| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 651| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 652 653### Viewing Marriage Registration 654 655Provides access to marriage registration-related information for a specific city, including marriage registration procedures, required materials, processing locations, and divorce registration services. This function offers guidance and support to users handling marriage registration matters. 656 657**Intent name**: ViewMarriageRegistration 658 659**Since**: 1.0.1 660 661**Parameters** 662 663| Name | Type | Mandatory| Description | Example Data | 664|------|--------|----|-----------------------------------------------------|-----------| 665| city | string | No | City information for the query. | "Guiyang"| 666| type | string | No | Marriage registration type.<br>- "Marriage": marriage (default value).<br>- "Divorce": divorce.| "Marriage" | 667 668**Return value** 669 670| Name | Type| Mandatory| Description | Example Data| 671| ------ | ---- | ---- |------------------------------------| -------- | 672| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 673| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 674 675### Viewing Special Additional Deduction 676 677Displays detailed information about special additional deductions for individual income tax, covering deduction categories such as children's education, continuing education, major illness medical expenses, housing loan interest, housing rent, elderly care, and childcare for children under 3 years old. It helps users reasonably plan their individual income tax relief. 678 679**Intent name**: ViewSpecialAdditionalDeduction 680 681**Since**: 1.0.1 682 683**Parameters** 684 685| Name | Type | Mandatory| Description | Example Data | 686|------------|--------|----|--------------------------------------------|---------------------| 687| category | string | No | Type of special additional deduction.| "ChildrenEducation" | 688| annualTime | number | No | Year. By default, the current year is used. Unit: year. | 2025 | 689 690**Return value** 691 692| Name | Type | Mandatory| Description | Example Data| 693| ------ | -----| ---- |------------------------------------| -------- | 694| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 695| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 696 697### Viewing Annual Settlement 698 699Enables users to check the comprehensive annual settlement of individual income tax for a specified year. It helps users understand key financial details such as annual income, taxable amount, taxes paid, and tax refund or supplementary payment amounts, supporting tax planning and personal financial management. 700 701**Intent name**: ViewAnnualAccount 702 703**Since**: 1.0.1 704 705**Parameters** 706 707| Name| Type | Mandatory | Description | Example Data| 708|---------|--------|-----|--------------|----------| 709| annualTime | number | No | Year. By default, the last year is used. Unit: year.| 2024 | 710 711**Return value** 712 713| Name| Type| Mandatory| Description| Example Data| 714|-------|----|----|----------|------| 715| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 716| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 717 718### Searching for Local Charging Piles 719 720Searches for the distribution of charging piles near the user's current location or a specified area. This helps electric vehicle users quickly find available charging facilities, plan charging routes, and ease range anxiety. 721 722**Intent name**: SearchChargingStationLocal 723 724**Since**: 1.0.2 725 726**Parameters** 727 728| Name| Type| Mandatory| Description| Example Data| 729|----|----------|----|------|------| 730| location | string | No | Location information.| - | 731 732**Return value** 733 734| Name| Type| Mandatory| Description| Example Data| 735|-------|-----|----|----------|------| 736| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 737| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 738 739### Viewing Utility Bills 740 741Obtains detailed information about various utility bills for users, including but not limited to water, electricity, gas, phone, internet, and heating bills. The function supports precise location of payment accounts through multiple conditions (such as account number, community, or city), helping users quickly obtain key details like pending bill amounts, payment deadlines, and billing units. This prevents late fees or negative impacts on credit records due to overdue payments. 742 743**Intent name**: ViewPayment 744 745**Since**: 1.0.1 746 747**Parameters** 748 749| Name| Type | Mandatory| Description | Example Data| 750|-------|--------|----|-------------------------------------------------------------------------------------|----------| 751| entityId | string |No | Intent entity ID, which is used to accurately locate a specific payment record. | "C10194368" | 752| entityName | string |Yes | Payment type name. Enumerated value: **Payment**. | "Payment" | 753| accountNumber | number |No | Payment account number. | 6399998888 | 754| billType | number |No | Utility bill type.<br>- 0: water bill.<br>- 1: electricity bill.<br>- 2: gas bill.<br>- 3: phone bill.<br>- 4: data bill.<br>- 5: heating bill.| 0 | 755| cell | string |No | Community name. | "xx community"| 756| company | string |No | Payment service provider. | "State Grid"| 757| city | string |No | City where the payment is made. | "Nanjing"| 758| address | string |No | Detailed residential address. | "Room 501, Building ****, Longgang District, Shenzhen"| 759| belongingAccount | string |Yes | Unique ID of the HUAWEI ID. | - | 760 761**Return value** 762 763| Name| Type| Mandatory| Description| Example Data| 764|-------|----|----|----------|------| 765| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 766| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 767 768### Searching for Local Smart Devices 769 770Supports multi-dimensional filtering by device name, type, location, and keywords to quickly locate target devices, while displaying device control options or status information. 771 772**Intent name**: SearchSmartDeviceLocal 773 774**Since**: 1.0.1 775 776**Parameters** 777 778| Name | Type | Mandatory| Description | Example Data | 779|----------------|--------|----|--------------------------------|----------| 780| deviceName | string | No | Device name. | "Camera 11" | 781| deviceType | string | No | Device type.<br>- Camera (default value).<br>- Lamp.| "Camera" | 782| deviceLocation | string | No | Device location. | "Balcony" | 783| keywords | string | No | Search keywords. | "Camera inside"| 784 785**Return value** 786 787| Name | Type| Mandatory| Description | Example Data | 788|----------------| ---- | ---- |-----------------------------------|--------------| 789| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 790| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 791| entityId | string | Yes | Intent entity ID. | "C145236" | 792| entityName | string | Yes | The value is fixed at "SmartDevice". | "SmartDevice" | 793| deviceName | string | Yes | Device name. | "Camera in living room" | 794| deviceType | string | Yes | Device type. | "Camera" | 795| deviceLocation | string | Yes | Device location. | "Living room" | 796| logoURL | string | Yes | Icon URL, which is used to display the icon of the Celia dialog card. | - | 797 798### Viewing Smart Devices 799 800Allows remote access and management of real-time footage or historical recordings from smart devices (such as cameras and monitoring devices). It supports locating target devices via unique identifiers and specifying viewing modes (real-time footage or playback), meeting users' needs for real-time monitoring of device status and tracing historical records. 801 802**Intent name**: ViewSmartDevice 803 804**Since**: 1.0.1 805 806**Parameters** 807 808| Name | Type | Mandatory| Description | Example Data | 809|--------------|--------|----|----------------------------------------------------------------|-----------| 810| entityId | string | No | Unique identifier of the device. | "C145236" | 811| functionType | object | No | Device function type, such as playback and real-time footage.<br>- Playback: View historical recordings.<br>- LiveVideo: real-time footage (default value).| "Playback" | 812 813**Return value** 814 815| Name | Type | Mandatory| Description | Example Data| 816| ------ | -----| ---- |-------------------------| -------- | 817| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 818| result | object | Yes | Result list object. If the result list is empty, an empty value is returned. | - | 819 820### Viewing Rental Information 821 822Searches for detailed information about specific rental listings, including basic property details, rental prices, geographical locations, and amenities, to assist users in making informed rental decisions. 823 824**Intent name**: ViewRentingHouseInfo 825 826**Since**: 1.0.1 827 828**Parameters** 829 830| Name | Type | Mandatory| Description | Example Data | 831|----------|--------|----|-----------------|-----------| 832| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "12949589" | 833| extras | object | No | Other information, specified by the service that accesses the framework.| - | 834 835**Return value** 836 837| Name | Type| Mandatory| Description | Example Data| 838| ------ | ---- | ---- |-------------------------| -------- | 839| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 840| result | object | Yes | Result list object. If the result list is empty, an empty value is returned. | - | 841 842### Viewing Property Purchase Information 843 844Provides access to property purchase-related information, supporting the retrieval of real estate data by specific entities (such as property IDs) or additional filtering conditions (such as area or price). 845 846**Intent name**: ViewBuyingHouseInfo 847 848**Since**: 1.0.1 849 850**Parameters** 851 852| Name | Type | Mandatory| Description | Example Data | 853|----------|--------|----|-----------------|-----------| 854| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "12949589" | 855| extras | object | No | Other information, specified by the service that accesses the framework.| - | 856 857**Return value** 858 859| Name | Type | Mandatory| Description | Example Data| 860| ------ | -----| ---- |-------------------------| -------- | 861| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.| 0 | 862| result | object | Yes | Result list object. If the result list is empty, an empty value is returned. | - | 863 864### Viewing Utility Bills 865Queries detailed information about the user's utility bills, supporting filtering by payment type (such as water, electricity, or gas bills). It returns the result status to help users monitor the real-time payment status of various utilities and avoid additional fees due to overdue payments. 866 867**Intent name**: ViewUtilityBill 868 869**Since**: 1.0.1 870 871**Parameters** 872 873| Name| Type | Mandatory| Description | Example Data | 874|-------------|--------|----|---------------------------------------|-----------| 875| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters. | "E123456" | 876| billType | number | No | Payment type.<br>- 0: water bill.<br>- 1: electricity bill.<br>- 2: gas bill.<br>- 3: phone bill.<br>- 4: data bill.| 3 | 877 878**Return value** 879 880| Name | Type | Mandatory| Description | Example Data| 881| ------ | ----- |----- |------------------------------------| -------- | 882| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 883| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 884 885### Searching for Local Power Bank Locations 886Searches for nearby power bank rental or return locations, supporting filtering by keywords and distinguishing between rentable, returnable, or all types of locations. This helps users quickly find the nearest power bank services. 887 888**Intent name**: SearchPowerBankStationLocal 889 890**Since**: 1.0.1 891 892**Parameters** 893 894| Name| Type | Mandatory| Description | Example Data | 895|-------------|--------|----|--------------------------------------------------|---------| 896| location | object | No | Longitude and latitude of the location. Latitude range: [-90, 90]; longitude range: [-180, 180]. | {locationSystem:"GCJ02/BD09LL",latitude:"22.33",longitude:"12.33"} | 897| keywords | string | No | Search keywords.| "Near Tian'an Cloud Valley, Bantian Street" | 898| category | string | No | Category of the power bank location.<br>- Rentable: Users can rent power banks.<br>- Returnable: Users can return power banks.<br>- All: all locations.| "Rentable" | 899 900**Return value** 901 902| Name | Type | Mandatory| Description | Example Data| 903| ------ | ----- |----- |------------------------------------| -------- | 904| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 905| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 906 907### Viewing Power Bank Locations 908Queries the location information of power bank rental or return outlets. It supports precise searches using the unique identifier of the intent entity, as well as filtering nearby outlets by geographical location and category, helping users quickly find available power bank services. 909 910**Intent name**: ViewPowerBankStation 911 912**Since**: 1.0.1 913 914**Parameters** 915 916| Name| Type | Mandatory| Description | Example Data | 917|-------------|--------|----|----------------------------------|---------| 918| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "145236" | 919| location | object | No | Longitude and latitude of the location. Latitude range: [-90, 90]; longitude range: [-180, 180].| {locationSystem:"GCJ02/BD09LL",latitude:"22.33",longitude:"12.33"} | 920| category | string | No | Category of the power bank location.<br>- Rentable: Users can rent power banks.<br>- Returnable: Users can return power banks.<br>- All: all locations.| "Rentable" | 921 922**Return value** 923 924| Name | Type | Mandatory| Description | Example Data| 925| ------ | ----- |----- |------------------------------------| -------- | 926| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 927| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 928 929### Viewing Reserved Tickets 930Searches for ticket information that users have reserved or are in the process of snatching (such as for performances, transportation, or events), and returns details including reservation status, ticket specifics, and snatching results. 931 932**Intent name**: ViewReservedTicket 933 934**Since**: 1.0.1 935 936**Parameters** 937 938| Name| Type | Mandatory| Description | Example Data | 939|-------------|--------|----|---------------------------------------|-------------| 940| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 941 942**Return value** 943 944| Name | Type | Mandatory| Description | Example Data| 945| ------ | ----- |----- |------------------------------------| -------- | 946| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 947| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 948 949### Viewing Business Districts 950Retrieves detailed information about a specified business district, such as merchant distribution, events, and location. It supports precise searches using the unique identifier of the intent entity and returns basic business district data and status. 951 952**Intent name**: ViewMall 953 954**Since**: 1.0.1 955 956**Parameters** 957 958| Name| Type | Mandatory| Description | Example Data | 959|-------------|--------|----|---------------------------------------|-------------| 960| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 961 962**Return value** 963 964| Name | Type | Mandatory| Description | Example Data| 965| ------ | ----- |----- |------------------------------------| -------- | 966| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 967| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 968 969### Viewing Government Services 970Obtains lists of local government services or specific administrative handling information (such as service guidelines, reservation status, and policy announcements). It supports filtering by service type as needed and returns government service data results. 971 972**Intent name**: ViewGovernmentService 973 974**Since**: 1.0.1 975 976**Parameters** 977 978N/A 979 980**Return value** 981 982| Name | Type | Mandatory| Description | Example Data| 983| ------ | ----- |----- |------------------------------------| -------- | 984| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 985| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 986 987### View Living Index 988Queries specified types of living index information (such as air quality, ultraviolet intensity, clothing suggestions, and comfort index), helping users understand current and future living environment indicators to assist in daily decision-making. 989 990**Intent name**: ViewLivingIndex 991 992**Since**: 1.0.1 993 994**Parameters** 995 996| Name| Type | Mandatory| Description | Example Data | 997|-------------|--------|----|---------------------------------------|-------------| 998| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters. | "C245885" | 999 1000**Return value** 1001 1002| Name | Type | Mandatory| Description | Example Data| 1003| ------ | ----- |----- |------------------------------------| -------- | 1004| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1005| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1006 1007## News Domain 1008### Viewing the Ranking List 1009 1010Retrieves the content list of a specific ranking. It supports filtered queries by ranking content ID, or fetches default ranking content when no ranking content ID is specified. 1011 1012**Intent name**: ViewRankingList 1013 1014**Since**: 1.0.1 1015 1016**Parameters** 1017 1018| Name| Type | Mandatory| Description | Example Data| 1019|-----|--------|--------|-----------------|----------| 1020| entityId | string | No| Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1021| rankingContentId | number | No| Ranking content ID. | 1234567 | 1022 1023**Return value** 1024 1025| Name | Type | Mandatory| Description | Example Data| 1026| ------ | ------| ---- |----------------------------------------| -------- | 1027| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1028| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1029 1030### Viewing Columns 1031 1032Obtains the content list of a specific column. It allows filtered queries by column title, or retrieves default column content when no title is specified. 1033 1034**Intent name**: ViewColumn 1035 1036**Since**: 1.0.1 1037 1038**Parameters** 1039 1040| Name| Type| Mandatory| Description | Example Data| 1041|------|-------|--------|-----------------|----------| 1042| entityId | string | No| Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1043| columnTitle | string | No| Column title. | "ETF" | 1044 1045**Return value** 1046 1047| Name | Type| Mandatory| Description | Example Data| 1048| ------ |-----| ---- |---------------------------------------| -------- | 1049| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1050| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1051 1052### Viewing Blogs 1053 1054Obtains the list of news blog content under a specific category. It supports queries by blog channel category, and returns default blog content when no category is specified. 1055 1056**Intent name**: ViewBlog 1057 1058**Since**: 1.0.1 1059 1060**Parameters** 1061 1062| Name| Type | Mandatory| Description | Example Data| 1063|--------------|---------|---|----------------------------------|----------| 1064| entityId | string | No| Intent entity ID, with a maximum of 64 characters. | "C10194368" | 1065| blogCategory | string | No| News blog channel category. Example:<br>- Travel.<br>- Life.<br>- Military.<br>- Technology.<br>- Culture.<br>- Food.<br>- Automobile.| "Travel"| 1066 1067**Return value** 1068 1069| Name| Type| Mandatory| Description | Example Data | 1070|-------|-------|---|------------------------------------|----------------------------------------------------------------| 1071| code | number | Yes| Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1072| result | object | Yes| Result list object. If the result list is empty, an empty value is returned.| - | 1073 1074### Viewing Column Updates 1075 1076Checks the latest updated content of a specific column. It can accurately locate details of a single update via the update ID or retrieve a batch update list for the column, helping users track updates of interested columns in a timely manner. 1077 1078**Intent name**: ViewColumnUpdate 1079 1080**Since**: 1.0.1 1081 1082**Parameters** 1083 1084| Name| Type | Mandatory| Description | Example Data| 1085|-------------|--------|------|------------------|---------| 1086| entityId | string | No | Intent entity ID, which is the column update ID. The value contains a maximum of 64 characters.| "C10194368" | 1087 1088**Return value** 1089 1090| Name | Type | Mandatory| Description | Example Data| 1091| ------ | ----- |----- |------------------------------------| -------- | 1092| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1093| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1094 1095## Books Domain 1096### Reading Books 1097 1098Obtains the reading permission and content data of a specified book. It supports accurate queries by book ID and returns the reading result status along with book metadata information. 1099 1100**Intent name**: ReadBook 1101 1102**Since**: 1.0.1 1103 1104**Parameters** 1105 1106| Name| Type | Mandatory| Description | Example Data| 1107|-----|--------|----|-------------------------|----------------| 1108| entityId | string | Yes | Intent entity ID, which is the book ID. The value contains a maximum of 64 characters.| "C10194368" | 1109 1110**Return value** 1111 1112| Name| Type| Mandatory| Description | Example Data| 1113|---------|----|----|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------| 1114| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported.<br>[Error type 1] User reasons:<br>- 100060101: Member articles and paid articles cannot be read.<br>- 100060102: The membership has expired, and there are no preview chapters in the article.<br>[Error type 2] Content range restrictions:<br>- 100060201: Reading is not supported for articles that have child protection enabled, are associated with a child account, or are marked as inappropriate.<br>- 100060202: The article has been removed and cannot be read.<br>- 100060203: The copyright of the article on this platform has expired and therefore the article cannot be read.<br>[Error type 3] Internal service exceptions:<br>- 100060301: The article/author has been added to the blocklist and therefore the article cannot be read.<br>[Error type 4] Internal system exceptions:<br>- 100060401: The software is faulty.| 100060101 | 1115| result | object | Yes | Result object, which is returned in the form of key-value pairs, with a maximum of 8000 characters. | {"bookSize":"4M","dataReceiveTime":1704868765000} | 1116 1117## ShoppingPlatformsDomain 1118### Viewing Commodities 1119 1120Queries detailed information of specified commodities through commodity links or intent entity IDs, catering to needs in various scenarios. 1121 1122**Intent name**: ViewCommodity 1123 1124**Since**: 1.0.2 1125 1126**Parameters** 1127 1128| Name| Type| Mandatory| Description | Example Data| 1129|--------------|----------|---|------------------------------|----------| 1130| entityId | string | No| Intent entity ID, with a maximum of 64 characters. | "C10194368" | 1131| shareLink | string | No| Commodity link text (no more than 1500 characters). Choose either this parameter or **entityId**.| `"https://example.com/product/12345"` | 1132 1133**Return value** 1134 1135| Name| Type| Mandatory| Description | Example Data| 1136|-------|------|----|------------------------------------|----------| 1137| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1138| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| {"items": [{"productId": "12345", "name": "Sample product","price":99.99}]}| 1139 1140### Viewing Shopping Guides 1141 1142Retrieves guide information for specific shopping scenarios or commodities via the intent entity ID, providing users with professional shopping guidance. 1143 1144**Intent name**: ViewShoppingGuide 1145 1146**Since**: 1.0.1 1147 1148**Parameters** 1149 1150| Name| Type | Mandatory| Description | Example Data| 1151|--------------|--------|----|-----------------|----------| 1152| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1153 1154**Return value** 1155 1156| Name| Type| Mandatory| Description | Example Data | 1157|-----|-----|----|------------------------------------|-------------------------| 1158| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1159| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1160 1161## Health Domain 1162### Viewing Medical Insurance Code 1163 1164Triggers the system to query and display the currently valid medical insurance code. It is suitable for offline medical expense settlement or other medical insurance-related services. 1165 1166**Intent name**: ViewMedicalInsuranceCode 1167 1168**Since**: 1.0.1 1169 1170**Parameters** 1171 1172N/A 1173 1174**Return value** 1175 1176| Name | Type| Mandatory| Description | Example Data| 1177| ------ | ---- | ---- |----------------------------| -------- | 1178| code | number | Yes | Result code. Customization is supported. | 0 | 1179| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1180 1181### Viewing Medical Insurance Information 1182 1183Queries basic information, participation status, payment records, and benefit entitlement status of the medical insurance account, making it easy to keep track of account dynamics and rights in real time. 1184 1185**Intent name**: ViewMedicalInsuranceInfo 1186 1187**Since**: 1.0.1 1188 1189**Parameters** 1190 1191N/A 1192 1193**Return value** 1194 1195| Name | Type| Mandatory| Description | Example Data| 1196| ------ | ---- | ---- |------------------------------------| -------- | 1197| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1198| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1199 1200### Viewing Hospitals 1201 1202Searches for detailed information of specified medical institutions, including basic information, department services, and geographical location, facilitating understanding of the hospital or informed medical decision-making. 1203 1204**Intent name**: ViewHospital 1205 1206**Since**: 1.0.1 1207 1208**Parameters** 1209 1210| Name | Type | Mandatory| Description | Example Data | 1211|----------|--------|----|-----------------|-------------| 1212| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1213 1214**Return value** 1215 1216| Name | Type | Mandatory| Description | Example Data| 1217| ------ | -----| ---- |------------------------------------| -------- | 1218| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1219| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1220 1221### Searching for Hospitals 1222Queries hospital information within a specified city and region, supports precise filtering by keywords, and returns detailed hospital information (such as address, business hours, and tags), helping users quickly locate target medical institutions. 1223 1224**Intent name**: SearchHospital 1225 1226**Since**: 1.0.1 1227 1228**Parameters** 1229 1230| Name| Type | Mandatory| Description | Example Data| 1231|-------------|--------|----|------------------|---------| 1232| city | string | Yes |City where the physical examination center is located.| "Beijing"| 1233| district | string | No | District.| "Fengtai District"| 1234| keywords | string | No | Keywords.| "Jianguomen"| 1235 1236**Return value** 1237 1238| Name | Type | Mandatory| Description | Example Data | 1239| ------ |--------|----|-------------------|-----------| 1240| entityId | string | Yes | Intent entity ID. | "C10194368" | 1241| entityName | string | Yes | Entity name. | "Hospital" | 1242| hospitalName | string | Yes | Hospital name. | "Ankang**** Branch"| 1243| description | string | Yes | Hospital description. | "Great experience" | 1244| tags | array | No | Tags. | ["Free Wi-Fi," "With VIP inspection area"] | 1245| openingTime | string | No | Business hours.| "Monday to Wednesday, Friday to Sunday: 07:40-15:00" | 1246| hospitalAddress | string | No | Hospital address.| "2nd Floor, **** Building, Dongcheng District, Beijing" | 1247| distance | number | No | Distance, in units of meters. The input parameter depends on the latitude and longitude information passed in the parameters.| 2520 | 1248| logoURL | string | No | Image path.| `"http://xxxx.png"` | 1249 1250### Viewing Follow-Up Appointments 1251Queries patients' follow-up appointment details, including key information like follow-up time, department, and attending doctor, helping patients stay informed and manage subsequent medical arrangements. 1252 1253**Intent name**: ViewFollowUpVisit 1254 1255**Since**: 1.0.1 1256 1257**Parameters** 1258 1259| Name| Type | Mandatory| Description | Example Data | 1260|-------------|--------|----|-----------------------|-------------| 1261| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1262 1263**Return value** 1264 1265| Name | Type | Mandatory| Description | Example Data| 1266| ------ | ----- |----- |------------------------------------| -------- | 1267| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1268| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1269 1270### Viewing Outpatient Registration 1271Checks users' outpatient registration records, including key details such as the registered department, doctor, and visit time, assisting users in managing their medical plans and staying updated on registration status. 1272 1273**Intent name**: ViewOutpatientRegistration 1274 1275**Since**: 1.0.1 1276 1277**Parameters** 1278 1279| Name| Type | Mandatory| Description | Example Data | 1280|-------------|--------|----|-----------------------|-------------| 1281| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1282 1283**Return value** 1284 1285| Name | Type | Mandatory| Description | Example Data| 1286| ------ | ----- |----- |------------------------------------| -------- | 1287| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1288| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1289 1290## Tools Domain 1291### Viewing Payment Code 1292 1293Retrieves and displays currently valid payment code information. It is suitable for offline payment scenarios. 1294 1295**Intent name**: ViewPaymentCodes 1296 1297**Since**: 1.0.1 1298 1299**Parameters** 1300 1301N/A 1302 1303**Return value** 1304 1305| Name | Type | Mandatory| Description | Example Data| 1306| ------ | -------| -------- |------------------------------------| -------- | 1307| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1308| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1309 1310### Starting Scanning 1311 1312Triggers the system to activate the device camera for code scanning or image recognition, then displays the scan results. It supports multiple modes, including general code scanning, text extraction, translation, object recognition, and document scanning. 1313 1314**Intent name**: OpenScan 1315 1316**Since**: 1.0.1 1317 1318**Parameters** 1319 1320| Name| Type | Mandatory| Description | Example Data| 1321|----|--------|----|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------| 1322| scanFunction | string | No| Scanning function.<br>- General: general scanning.<br>- "RecognizeText": text extraction/recognition.<br>- "RecognizeTranslation": recognition and translation.<br>- "RecognizeObjects": object recognition.<br>- "ScanCertificate": certificate scanning.<br>- "ScanIDCard": ID card scanning.<br>- "ScanHouseholdRegistrationRecord": household registration record scanning.<br>- "ScanPassport": passport scanning.<br>- "ScanDriverLicense": driver's license scanning.<br>- "ScanVehicleLicense": vehicle license scanning.<br>- "ScanBankCard": bank card scanning.<br>- "ScanHousePropertyCard": house property certificate scanning.<br>- "ScanBusinessLicense": business license scanning.<br>- "EraseHandwriting": handwriting erasing or test paper restoration.| "General" | 1323 1324**Return value** 1325 1326| Name | Type | Mandatory| Description | Example Data| 1327| ------ | ------- | -------- |------------------------------------| -------- | 1328| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1329| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1330 1331### Contact Customer Service 1332 1333Connects to the customer service system to obtain support, resolve usage issues, or consult relevant information. 1334 1335**Intent name**: ContactCustomerService 1336 1337**Since**: 1.0.1 1338 1339**Parameters** 1340 1341N/A 1342 1343**Return value** 1344 1345| Name | Type | Mandatory| Description | Example Data| 1346| ------ | ----- | -------- |------------------------------------| -------- | 1347| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1348| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1349 1350### Creating Accounts 1351 1352Creates an account, including completing information verification and initialization procedures. 1353 1354**Intent name**: CreateNewAccount 1355 1356**Since**: 1.0.1 1357 1358**Parameters** 1359 1360N/A 1361 1362**Return value** 1363 1364| Name | Type | Mandatory| Description | Example Data| 1365| ------ | ------- | -------- |------------------------------------| -------- | 1366| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1367| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1368 1369### Viewing Account Balance 1370 1371Queries categorized account balance information (such as data traffic, voice minutes, SMS allowances, and phone bill balance). 1372 1373**Intent name**: ViewRemain 1374 1375**Since**: 1.0.1 1376 1377**Parameters** 1378 1379| Name | Type | Mandatory| Description | Example Data| 1380|----------|--------|----|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------| 1381| category | string | No| Balance category.<br>- DataTraffic: data traffic.<br>- VoiceTraffic: voice traffic.<br>- SMSTraffic: SMS traffic.<br>- MobileAccountBalance: phone bill balance.| "DataTraffic" | 1382 1383 1384**Return value** 1385 1386| Name | Type | Mandatory| Description | Example Data| 1387| ------ | ------ | -------- |------------------------------------|------| 1388| code | number | Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1389| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1390 1391### Viewing Ordered Services 1392Retrieves information about services users have subscribed to. It supports filtering by service category (such as data traffic, voice minutes, and SMS allowances), and returns subscription details. 1393 1394**Intent name**: ViewOrderedBusiness 1395 1396**Since**: 1.0.1 1397 1398**Parameters** 1399 1400| Name| Type | Mandatory| Description | Example Data| 1401|-------------|--------|------|------------------|---------| 1402| category | string | No | Balance category.<br>- DataTraffic: data traffic.<br>- VoiceTraffic: voice traffic.<br>- SMSTraffic: SMS traffic.| "DataTraffic" | 1403 1404**Return value** 1405 1406| Name | Type | Mandatory| Description | Example Data| 1407| ------ | ----- |----- |------------------------------------| -------- | 1408| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1409| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1410 1411### Viewing Cloud Backup 1412Checks the status and content of current cloud backups, including backup types (such as photo albums and contacts). 1413 1414**Intent name**: ViewCloudBackup 1415 1416**Since**: 1.0.1 1417 1418**Parameters** 1419 1420| Name| Type | Mandatory| Description | Example Data| 1421|-------------|--------|------|--------------------------------------------------------------------------------------------------------------------|---------| 1422| backupType | string | No | Backup type.<br>- Gallery: album.<br>- Contact: contacts.| "Contact" | 1423 1424**Return value** 1425 1426| Name | Type | Mandatory| Description | Example Data| 1427| ------ | ----- |----- |------------------------------------| -------- | 1428| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1429| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1430 1431### Sending Red Packets 1432Initiates a red packet distribution operation, allowing users to specify the total amount, individual red packet amount, number of red packets, red packet type (ordinary, lucky draw, or good luck), and remarks (blessings). 1433 1434**Intent name**: SendRedPacket 1435 1436**Since**: 1.0.1 1437 1438**Parameters** 1439 1440| Name| Type | Mandatory| Description | Example Data | 1441|-------------|--------|------|--------|------------| 1442| totalAmount | number | No | Total amount of red packets. in units of CNY.| 88.88 | 1443| amount | number | No | Amount of a single red packet. in units of CNY.| 2.00 | 1444| packetNumber | number | No | Number of red packets. Unit: piece.| 2 | 1445| type | string | No | Red packet type.<br>- Ordinary: ordinary red packet.<br>- FightingLuck: lucky draw red packet.<br>- GoodLuck: good luck red packet.| "Ordinary" | 1446| remarks | string | No | Red packet blessing.| "Happy Birthday" | 1447 1448**Return value** 1449 1450| Name | Type | Mandatory| Description | Example Data| 1451| ------ | ----- |----- |------------------------------------| -------- | 1452| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1453| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1454 1455### Opening Search Pages 1456Opens the in-application search page, supports inputting initial search content, and returns the operation result status along with possible search suggestions or historical records. 1457 1458**Intent name**: ViewSearchPageLocal 1459 1460**Since**: 1.0.1 1461 1462**Parameters** 1463 1464| Name| Type | Mandatory| Description | Example Data| 1465|-------------|--------|----|-------|------| 1466| query | string | Yes | Search content.| - | 1467 1468**Return value** 1469 1470| Name | Type | Mandatory| Description | Example Data| 1471| ------ | ----- |----- |------------------------------------| -------- | 1472| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1473| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1474 1475### Jumping to Function Pages 1476Triggers the client to navigate to a specified in-application function page. It supports passing the target page identifier via standardized parameters and returns the operation execution status. 1477 1478**Intent name**: JumpFunctionPage 1479 1480**Since**: 1.0.1 1481 1482**Parameters** 1483 1484| Name| Type | Mandatory| Description | Example Data| 1485|-------------|--------|----|-------|------| 1486| pageId | string | Yes | Identifier of a specific function.| - | 1487 1488**Return value** 1489 1490| Name | Type | Mandatory| Description | Example Data| 1491| ------ | ----- |----- |------------------------------------| -------- | 1492| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1493| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1494 1495### Check In 1496Completes check-in operations (such as sign-in or task completion marking) within the application. It allows passing an entity's unique identifier for precise check-in and returns the operation result status and related data. 1497 1498**Intent name**: PunchIn 1499 1500**Since**: 1.0.1 1501 1502**Parameters** 1503 1504| Name| Type | Mandatory| Description | Example Data| 1505|-------------|--------|----|------------|------| 1506| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1507 1508**Return value** 1509 1510| Name | Type | Mandatory| Description | Example Data| 1511| ------ | ----- |----- |------------------------------------| -------- | 1512| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1513| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1514 1515## Business Domain 1516### Joining Meetings 1517Joins a specified meeting. It supports precise targeting of the meeting through parameters such as meeting ID, participant list, and meeting type, and returns the operation result status and data. 1518 1519**Intent name**: StartMeeting 1520 1521**Since**: 1.0.1 1522 1523**Parameters** 1524 1525| Name| Type | Mandatory| Description | Example Data| 1526|-------------|--------|------|----------------------------|---------| 1527| conferenceId | string | No | Unique ID of a meeting. | "A10194368" | 1528| participantIds | array | No | List of participants, corresponding to **entityId** of the contact entity. | ["C111", "C112","C114"]| 1529| conferenceType | string | No | Meeting type.<br>- Video: video.<br>- Audio: audio.| "Video" | 1530 1531**Return value** 1532 1533| Name | Type | Mandatory| Description | Example Data| 1534| ------ | ----- |----- |------------------------------------| -------- | 1535| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1536| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1537 1538### Viewing Job Information 1539Queries work-related information associated with a user or enterprise, including key data like position, company, employment date, and salary, and returns the operation result status and data. It ensures users can track work dynamics in real time or enterprises can efficiently manage employee records, supporting scenarios such as recruitment, career planning, and personnel management. 1540 1541**Intent name**: ViewJobInfo 1542 1543**Since**: 1.0.1 1544 1545**Parameters** 1546 1547| Name| Type | Mandatory| Description | Example Data| 1548|-------------|--------|------|----------------------------|---------| 1549| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1550 1551**Return value** 1552 1553| Name | Type | Mandatory| Description | Example Data| 1554| ------ | ----- |----- |------------------------------------| -------- | 1555| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1556| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1557 1558## Education Domain 1559### Viewing School Timetable 1560Retrieves the user's class schedule, supports returning course arrangements for the current cycle (such as week/month), and returns the operation status. 1561 1562**Intent name**: ViewSchoolTimetable 1563 1564**Since**: 1.0.1 1565 1566**Parameters** 1567 1568N/A 1569 1570**Return value** 1571 1572| Name | Type | Mandatory| Description | Example Data| 1573| ------ | ----- |----- |------------------------------------| -------- | 1574| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1575| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1576 1577### Viewing the School Calendar 1578Obtains the current school's academic calendar, including semester schedules, holidays, and key dates (such as the start of the school year and exam weeks), and returns the operation result status and data. 1579 1580**Intent name**: ViewSchoolCalendar 1581 1582**Since**: 1.0.1 1583 1584**Parameters** 1585 1586N/A 1587 1588**Return value** 1589 1590| Name | Type | Mandatory| Description | Example Data| 1591| ------ | ----- |----- |------------------------------------| -------- | 1592| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1593| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1594 1595## Finance Domain 1596### Viewing Repayment 1597Queries the user's repayment plans or records, supports precise targeting of a specific repayment item via the specified repayment entity ID, or returns all pending repayment records, and provides the operation result status and data. 1598 1599**Intent name**: ViewRepayment 1600 1601**Since**: 1.0.1 1602 1603**Parameters** 1604 1605| Name| Type | Mandatory| Description | Example Data| 1606|-------------|--------|----|----------------------------|---------| 1607| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1608 1609**Return value** 1610 1611| Name | Type | Mandatory| Description | Example Data| 1612| ------ | ----- |----- |------------------------------------| -------- | 1613| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1614| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1615 1616### Viewing Account Changes 1617Queries transaction details or fund movement records of the user's bank account. It supports multi-dimensional filtering of target transactions by intent entity ID, last four digits of the bank card, card type, and time period, and returns the operation result status and movement records. 1618 1619**Intent name**: ViewAccountChange 1620 1621**Since**: 1.0.1 1622 1623**Parameters** 1624 1625| Name| Type | Mandatory| Description | Example Data | 1626|-------------|--------|----|-----------------------------------------|-------------| 1627| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 1628| cardTailNumber | string | No | Last four digits of the bank card. | "1234" | 1629| cardType | string | No | Bank card type.<br>- CreditCard: credit card.<br>- SavingsCard: debit card.| "CreditCard" | 1630| timeInterval | array | No | Transaction time range, which is an array of start and end timestamps (UTC timestamp). | [163739320000,163739320000] | 1631 1632**Return value** 1633 1634| Name | Type | Mandatory| Description | Example Data| 1635| ------ | ----- |----- |------------------------------------| -------- | 1636| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1637| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1638 1639### Viewing Account Change Functions 1640Queries transaction details or fund movement records of the user's bank account. It supports multi-dimensional filtering of target transactions by intent entity ID, last four digits of the bank card, card type, and time period, and returns the operation result status and movement records. 1641 1642**Intent name**: ViewAccountChangeFunc 1643 1644**Since**: 1.0.1 1645 1646**Parameters** 1647 1648| Name| Type | Mandatory| Description | Example Data | 1649|-------------|--------|----|---------------------------------------------------|-------------| 1650| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 1651| cardTailNumber | string | No | Last four digits of the bank card. | "1234" | 1652| cardType | string | No | Bank card type.<br>- CreditCard: credit card.<br>- SavingsCard: debit card.| "CreditCard" | 1653| timeInterval | array | No | Transaction time range, which is an array of start and end timestamps (UTC timestamp). | [163739320000,163739320000] | 1654 1655**Return value** 1656 1657| Name | Type | Mandatory| Description | Example Data| 1658| ------ | ----- |----- |------------------------------------| -------- | 1659| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1660| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1661 1662### Paying Repayment 1663Initiates a repayment payment or queries repayment records. It supports precise targeting of the repayment account and business type via the last four digits of the bank card and repayment type (credit card/consumer loan), and returns the operation result status and repayment data. 1664 1665**Intent name**: PayRepayment 1666 1667**Since**: 1.0.1 1668 1669**Parameters** 1670 1671| Name| Type | Mandatory| Description | Example Data | 1672|-------------|--------|----|---------------------------------------------------|-------------| 1673| cardTailNumber | string | No | Last four digits of a bank card, with a maximum of 16 characters. | "1234" | 1674| repaymentType | string | No | Repayment type.<br>- CreditCard: credit card.<br>- ConsumerLoan: consumer loan.| "CreditCard" | 1675 1676**Return value** 1677 1678| Name | Type | Mandatory| Description | Example Data| 1679| ------ | ----- |----- |------------------------------------| -------- | 1680| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1681| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1682 1683### Viewing Wealth Management Products 1684Queries a list of wealth management products or retrieves details of specific products. It supports precise filtering by product name and type (current/term), and returns the operation result status and product data. 1685 1686**Intent name**: ViewWealthManageProduct 1687 1688**Since**: 1.0.1 1689 1690**Parameters** 1691 1692| Name| Type | Mandatory| Description | Example Data | 1693|-------------|--------|----|----------|----------| 1694| wealthManageName | string | No | Name of the wealth management product. | "Chaochao Ying" | 1695| wealthManageType | string | No | Type of wealth management product.<br>- Current: current wealth management.<br>- Regular: regular wealth management.| "Current" | 1696 1697**Return value** 1698 1699| Name | Type | Mandatory| Description | Example Data| 1700| ------ | ----- |----- |------------------------------------| -------- | 1701| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1702| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1703 1704### Applying for Credit Cards 1705Submits a credit card application, supports passing necessary application information, and returns the operation result status. 1706 1707**Intent name**: ApplyCreditCard 1708 1709**Since**: 1.0.1 1710 1711**Parameters** 1712 1713N/A 1714 1715**Return value** 1716 1717| Name | Type | Mandatory| Description | Example Data| 1718| ------ | ----- |----- |------------------------------------| -------- | 1719| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1720| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1721 1722### Initiating Transfers 1723Initiates a transfer to a specified payee. It supports fund transfers via payee information (including name, card number, last four digits, and bank name) and transfer amount, and returns the result status and transaction details. 1724 1725**Intent name**: InitiateFundsTransfer 1726 1727**Since**: 1.0.1 1728 1729**Parameters** 1730 1731| Name| Type | Mandatory| Description | Example Data | 1732|-------------|--------|----|---------------|----------------| 1733| payee | string | No | Payee. | "Zhang San" | 1734| amount | number | No | Amount, | 1000 | 1735| cardNumber | string | No | Payee's card number. | "11223344556677" | 1736| cardTailNumber | string | No | Last four digits of the payee's bank card.| "1234" | 1737| openingBank | string | No | Payee's bank name. | "Bank XX Branch XX" | 1738| remark | string | No | Remarks. | - | 1739 1740**Return value** 1741 1742| Name | Type | Mandatory| Description | Example Data| 1743| ------ | ----- |----- |------------------------------------| -------- | 1744| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1745| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1746 1747### Viewing Account Balance 1748Queries the user's account balance, supports returning the total available funds in the current account, and returns the operation result status. 1749 1750**Intent name**: ViewAccountBalance 1751 1752**Since**: 1.0.1 1753 1754**Parameters** 1755 1756N/A 1757 1758**Return value** 1759 1760| Name | Type | Mandatory| Description | Example Data| 1761| ------ | ----- |----- |------------------------------------| -------- | 1762| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1763| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1764 1765### Viewing Private Pension 1766Queries key information of the user's private pension account, including total account balance, contribution records, and income status, and returns the result status. This ensures users can timely and accurately grasp the latest status of their private pension accounts, providing data support for retirement planning. 1767 1768**Intent name**: ViewPrivatePension 1769 1770**Since**: 1.0.1 1771 1772**Parameters** 1773 1774N/A 1775 1776**Return value** 1777 1778| Name | Type | Mandatory| Description | Example Data| 1779| ------ | ----- |----- |------------------------------------| -------- | 1780| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1781| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1782 1783### Viewing Credit Reports 1784Queries the user's personal credit report, covering key information such as credit score, loan records, and overdue status, and returns the result status. It ensures users can securely obtain their credit status in a timely manner, offering a reliable basis for financial decisions. 1785 1786**Intent name**: ViewCreditReport 1787 1788**Since**: 1.0.1 1789 1790**Parameters** 1791 1792N/A 1793 1794**Return value** 1795 1796| Name | Type | Mandatory| Description | Example Data| 1797| ------ | ----- |----- |------------------------------------| -------- | 1798| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1799| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1800 1801### Viewing Bank Branch Information 1802Queries bank branch information within a specified area or under specific conditions, including key data such as branch address, business hours, and contact number, and returns the result status. This helps users quickly obtain accurate information about target branches, enhancing offline service experience. 1803 1804**Intent name**: ViewBankBranchInfo 1805 1806**Since**: 1.0.1 1807 1808**Parameters** 1809 1810N/A 1811 1812**Return value** 1813 1814| Name | Type | Mandatory| Description | Example Data| 1815| ------ | ----- |----- |------------------------------------| -------- | 1816| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1817| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1818 1819### Viewing Stock Issuance Updates 1820Queries the latest issuance information of new stocks and bonds, including key data such as issuance lists, subscription periods, and issue prices, and returns the result status. It ensures investors stay updated on market dynamics to support efficient subscription decisions. 1821 1822**Intent name**: ViewStockIssuedUpdated 1823 1824**Since**: 1.0.1 1825 1826**Parameters** 1827 1828| Name| Type | Mandatory| Description | Example Data| 1829|-------------|--------|----|----------------------------|---------| 1830| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1831 1832**Return value** 1833 1834| Name | Type | Mandatory| Description | Example Data| 1835| ------ | ----- |----- |------------------------------------| -------- | 1836| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1837| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1838 1839### Viewing Selected Stocks 1840Queries detailed information of the user's selected stocks, including key data such as real-time stock price, price change percentage, and trading volume, and returns the result status. This allows users to timely track dynamic changes in their selected stocks, aiding investment decisions. 1841 1842**Intent name**: ViewSelectedStock 1843 1844**Since**: 1.0.1 1845 1846**Parameters** 1847 1848| Name| Type | Mandatory| Description | Example Data| 1849|-------------|--------|----|----------------------------|---------| 1850| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1851 1852**Return value** 1853 1854| Name | Type | Mandatory| Description | Example Data| 1855| ------ | ----- |----- |------------------------------------| -------- | 1856| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1857| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1858 1859### Viewing Stock Issuance Calendar 1860Queries the calendar of upcoming new stock issuance, including key data such as issuance date, stock name, subscription code, and issue price, and returns the result status. It ensures investors obtain the new stock issuance schedule in a timely manner, supporting informed subscription decisions. 1861 1862**Intent name**: ViewStockIssuedCalendar 1863 1864**Since**: 1.0.1 1865 1866**Parameters** 1867 1868N/A 1869 1870**Return value** 1871 1872| Name | Type | Mandatory| Description | Example Data| 1873| ------ | ----- |----- |------------------------------------| -------- | 1874| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1875| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1876 1877### Buying Stocks 1878Submits a stock purchase order to the securities trading platform. It supports precise targeting of the stock via the stock name or the combination of stock market and stock code, allows specifying the purchase price and quantity, and returns the result status. 1879 1880**Intent name**: BuyStock 1881 1882**Since**: 1.0.1 1883 1884**Parameters** 1885 1886| Name| Type | Mandatory| Description | Example Data | 1887|-------------|--------|----|-----------------------------------------------------------------------------------------------------------------------|------------| 1888| stockName | string | No | Stock name. Example:<br>- Shanghai Composite Index.<br>Enter either the stock name or the combination of the stock market and stock code must be specified. | "Shanghai Composite Index" | 1889| stockSymbol | string | No | Stock code, which is unique globally. Example:<br>- 000001: stock code for the Shanghai Composite Index.<br>Enter either the stock name or the combination of the stock market and stock code must be specified. | "SH000001" | 1890| stockMarket | string | No | Stock market. Example:<br>- SH: Shanghai Stock Exchange.<br>- SZ: Shenzhen Stock Exchange.<br>- BJ: Beijing Stock Exchange.<br>This parameter must be used together with the stock code.| "SH" | 1891| purchasePrice | number | No | Purchase price of the stock. in units of CNY.| 15.11 | 1892| purchaseQuantity | number | No | Quantity of stocks to buy. Unit: share.| 2000 | 1893 1894**Return value** 1895 1896| Name | Type | Mandatory| Description | Example Data| 1897| ------ | ----- |----- |------------------------------------| -------- | 1898| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1899| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1900 1901### Selling Stocks 1902Submits a stock sale order to the securities trading platform. It supports precise targeting of the stock via the stock name or the combination of stock market and stock code, allows specifying the selling price and quantity, and returns the result status. 1903 1904**Intent name**: SellStock 1905 1906**Since**: 1.0.1 1907 1908**Parameters** 1909 1910| Name| Type | Mandatory| Description | Example Data | 1911|-------------|--------|----|-----------------------------------------------------------------------------------------------------------|------------| 1912| stockName | string | No | Stock name. Example:<br>- Shanghai Composite Index.<br>Enter either the stock name or the combination of the stock market and stock code must be specified. | "Shanghai Composite Index" | 1913| stockSymbol | string | No | Stock code, which is unique globally. Example:<br>- 000001: stock code for the Shanghai Composite Index.<br>Enter either the stock name or the combination of the stock market and stock code must be specified.| "SH000001" | 1914| stockMarket | string | No | Stock market. Example:<br>- SH: Shanghai Stock Exchange.<br>- SZ: Shenzhen Stock Exchange.<br>- BJ: Beijing Stock Exchange.<br>This parameter must be used together with the stock code. | "SH" | 1915| sellingPrice | number | No | Selling price of the stock. in units of CNY. | 15.11 | 1916| sellQuantity | number | No | Quantity of stocks to sell. Unit: share. | 2000 | 1917 1918**Return value** 1919 1920| Name | Type | Mandatory| Description | Example Data| 1921| ------ | ----- |----- |------------------------------------| -------- | 1922| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1923| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1924 1925### Viewing Stock Market Quotes 1926Queries real-time quote data of major global stock markets, including core indicators such as index points, price change percentage, and trading volume, and returns the result status. It ensures users can quickly grasp the overall market trend, aiding investment decisions. 1927 1928**Intent name**: ViewStockMarketQuote 1929 1930**Since**: 1.0.1 1931 1932**Parameters** 1933 1934| Name| Type | Mandatory| Description | Example Data| 1935|-------------|--------|----|-------------------------------|------| 1936| marketArea | string | No | Market area of the market index.<br>- CN: China market (Shanghai and Shenzhen A-shares)<br>- US: US market.<br>- HK: Hong Kong market. | "CN" | 1937 1938**Return value** 1939 1940| Name | Type | Mandatory| Description | Example Data| 1941| ------ | ----- |----- |------------------------------------| -------- | 1942| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1943| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1944 1945### Viewing Fund Details 1946Queries detailed information of a specified fund, including core data such as net asset value, historical performance, fund manager, and asset allocation, and returns the result status. This enables investors to fully understand the characteristics of fund products, supporting investment decisions. 1947 1948**Intent name**: ViewFund 1949 1950**Since**: 1.0.1 1951 1952**Parameters** 1953 1954| Name| Type | Mandatory| Description | Example Data| 1955|-------------|--------|----|----------------------------|---------| 1956| entityId | string | No | Intent entity ID, with a maximum of 64 characters.| "C10194368" | 1957 1958**Return value** 1959 1960| Name | Type | Mandatory| Description | Example Data| 1961| ------ | ----- |----- |------------------------------------| -------- | 1962| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1963| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1964 1965### Viewing Fund Returns 1966Queries the return status of a specified fund or the user's held funds, including key data such as cumulative returns, stage gains (such as past 1 month/past 1 year), and dividend records. It returns the result status, ensuring that investors can timely grasp the fund return performance and assist in investment evaluation and decision-making. 1967 1968**Intent name**: ViewFundReturns 1969 1970**Since**: 1.0.1 1971 1972**Parameters** 1973 1974N/A 1975 1976**Return value** 1977 1978| Name | Type | Mandatory| Description | Example Data| 1979| ------ | ----- |----- |------------------------------------| -------- | 1980| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 1981| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 1982 1983### Viewing Insurance Policies 1984Queries user insurance policy information, supports precise filtering of target policies via policy entity ID or insurance type, and returns the result status and policy data. It ensures users can quickly obtain key policy information, with clear and transparent rights and interests. 1985 1986**Intent name**: ViewInsurancePolicy 1987 1988**Since**: 1.0.1 1989 1990**Parameters** 1991 1992| Name| Type | Mandatory| Description | Example Data | 1993|-------------|--------|----|-----------------------------------------------------------------------------------------------------------------|-------------| 1994| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 1995| insuranceType | string | No | Insurance type.<br>- Car: car insurance.<br>- TrafficCompulsory: compulsory traffic insurance.<br>- Health: health insurance.<br>- Accident: accident insurance.<br>- Property: property insurance.<br>- Travel: travel insurance.<br>- Pet: pet insurance.<br>- Enterprise: enterprise insurance.| "Car" | 1996 1997**Return value** 1998 1999| Name | Type | Mandatory| Description | Example Data| 2000| ------ | ----- |----- |------------------------------------| -------- | 2001| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2002| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2003 2004### Viewing Overdrafts 2005Queries the usage and credit limit information of a user's overdraft facility (a credit payment tool), including key data such as available limit, used limit, and bill details, and returns the result status. This helps users real-time track their overdraft account status, facilitating rational planning of credit consumption. 2006 2007**Intent name**: ViewOverdraft 2008 2009**Since**: 1.0.1 2010 2011**Parameters** 2012 2013N/A 2014 2015**Return value** 2016 2017| Name | Type | Mandatory| Description | Example Data| 2018| ------ | ----- |----- |------------------------------------| -------- | 2019| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2020| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2021 2022### Applying for Insurance Claims 2023Submits an insurance claim application, supports precise targeting of the policy via policy entity ID or insurance type, and allows submitting key claim information (such as accident description/amount), and returns the result status. 2024 2025**Intent name**: ApplyInsuranceClaim 2026 2027**Since**: 1.0.1 2028 2029**Parameters** 2030 2031| Name| Type | Mandatory| Description | Example Data | 2032|-------------|--------|----|-----------------------------------------------------------------------------------------------------------------|-------------| 2033| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 2034| insuranceType | string | No | Insurance type.<br>- Car: car insurance.<br>- TrafficCompulsory: compulsory traffic insurance.<br>- Health: health insurance.<br>- Accident: accident insurance.<br>- Property: property insurance.<br>- Travel: travel insurance.<br>- Pet: pet insurance.<br>- Enterprise: enterprise insurance.| "Car" | 2035 2036**Return value** 2037 2038| Name | Type | Mandatory| Description | Example Data| 2039| ------ | ----- |----- |------------------------------------| -------- | 2040| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2041| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2042 2043### Buying Vehicle Insurance 2044Initiates the online vehicle insurance purchase process, supports submitting a vehicle insurance application via the policy entity ID (for example, for renewal) or in a new insurance mode, and returns the result status and policy data. 2045 2046**Intent name**: BuyVehicleInsurance 2047 2048**Since**: 1.0.1 2049 2050**Parameters** 2051 2052| Name| Type | Mandatory| Description | Example Data | 2053|-------------|--------|----|-------------------|-------------| 2054| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 2055 2056**Return value** 2057 2058| Name | Type | Mandatory| Description | Example Data| 2059| ------ | ----- |----- |------------------------------------| -------- | 2060| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2061| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2062 2063## Travel Domain 2064### Searching for Local Travel Guides 2065Searches for local travel guide information (such as attraction introductions, travel routes, city recommendations) based on user-input keywords, geographic location, city scope, or guide type, and returns the result status. It ensures users quickly obtain accurate travel guides, improving travel planning efficiency. 2066 2067**Intent name**: SearchTravelLocal 2068 2069**Since**: 1.0.1 2070 2071**Parameters** 2072 2073| Name| Type | Mandatory| Description | Example Data | 2074|-------------|--------|------|--------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------| 2075| keywords | string | No | Search keywords, such as attraction names. Use commas (,) to separate multiple search keywords. | "Palace Museum","What's fun in Jiangning" | 2076| location | object | No | Longitude and latitude of the location. Latitude range: [-90, 90]; longitude range: [-180, 180]. | {"locationSystem":"GCJ02/BD09LL","locationName": "xxxx","latitude": "120.785645", "longitude": "33.039635", "address":"xxx"}| 2077| city | string | No | Used to filter non-local records by city in scenarios such as searching for attraction names. | "Shenzhen" | 2078| travelGuidesType | string | No | Type of travel guide.<br>- Scenic: Scenic spot guide.<br>- CitySelection: city selection.| "CitySelection" | 2079 2080**Return value** 2081 2082| Name | Type | Mandatory| Description | Example Data| 2083| ------ | ----- |----- |------------------------------------| -------- | 2084| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2085| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2086 2087### Viewing Travel Guides 2088Queries detailed information of specified travel guides, including guide content, applicable scenarios, and associated attractions or cities, and returns the result status. This allows users to quickly access complete information about target guides, aiding travel decisions. 2089 2090**Intent name**: ViewTravelGuides 2091 2092**Since**: 1.0.1 2093 2094**Parameters** 2095 2096| Name| Type | Mandatory| Description | Example Data | 2097|-------------|--------|----|-------------------|-------------| 2098| entityId | string | No | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 2099 2100**Return value** 2101 2102| Name | Type | Mandatory| Description | Example Data| 2103| ------ | ----- |----- |------------------------------------| -------- | 2104| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2105| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2106 2107### Viewing Scenery Orders 2108Queries detailed information of a user's purchased scenic spot ticket orders, including key data such as attraction name, admission time, ticket type, and order status, and returns the result status. It ensures users real-time track order status and admission information, enhancing the visiting experience. 2109 2110**Intent name**: ViewSceneryOrder 2111 2112**Since**: 1.0.1 2113 2114**Parameters** 2115 2116| Name| Type | Mandatory| Description | Example Data | 2117|-------------|--------|----|-------------------|-------------| 2118| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 2119 2120**Return value** 2121 2122| Name | Type | Mandatory| Description | Example Data| 2123| ------ | ----- |----- |------------------------------------| -------- | 2124| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2125| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2126 2127## Lodging Domain 2128### Viewing Hotel Appointment Information 2129Queries detailed information of a user's hotel booking orders, including key data such as hotel name, check-in time, room type, and order status, and returns the result status. It ensures users real-time track order status and hotel service information, improving the check-in experience. 2130 2131**Intent name**: ViewHotelAppointmentInfo 2132 2133**Since**: 1.0.1 2134 2135**Parameters** 2136 2137| Name| Type | Mandatory| Description | Example Data | 2138|-------------|--------|----|-------------------|-------------| 2139| entityId | string | Yes | Intent entity ID, with a maximum of 64 characters. | "C10194368" | 2140 2141**Return value** 2142 2143| Name | Type | Mandatory| Description | Example Data| 2144| ------ | ----- |----- |------------------------------------| -------- | 2145| code | number| Yes | Result code. The value **0** indicates success while other values indicate failure. Customization is supported. | 0 | 2146| result | object | Yes | Result list object. If the result list is empty, an empty value is returned.| - | 2147