@@ -108,13 +108,14 @@ This API could be used to navigate to an arbitrary page on the OOTB Library.
108
108
109
109
#### Input Parameters
110
110
111
- | Parameter Name | Data Type | Description | Is Required |
112
- | ---------------------- | --------- | ----------------------------------------------- | ----------- |
113
- | pageInfo.applicationId | string | The application ID, which must be a GUID. | false |
114
- | pageInfo.projectId | string | The project ID, which must be a GUID. | false |
115
- | pageInfo.objectId | string | The object ID, which must be a valid object id. | false |
116
- | pageInfo.pageKey | string | The page key. | false |
117
- | pageInfo.isAuthoring | boolean | Go to the authoring page or not. | false |
111
+ | Parameter Name | Data Type | Description | Is Required |
112
+ | ---------------------- | --------- | ------------------------------------------------------------ | ----------- |
113
+ | pageInfo.applicationId | string | The application ID, which must be a GUID. | false |
114
+ | pageInfo.projectId | string | The project ID, which must be a GUID. | false |
115
+ | pageInfo.objectId | string | The object ID, which must be a valid object id. | false |
116
+ | pageInfo.pageKey | string | The page key. | false |
117
+ | pageInfo.isAuthoring | boolean | Go to the authoring page or not. | false |
118
+ | pageInfo.instanceId | string | The instance id, which must be a valid dashboard instanceId. | false |
118
119
119
120
The API call like ` embeddingContext.goToPage() ` will navigate to the homepage.
120
121
@@ -142,6 +143,7 @@ try {
142
143
objectId: " EC70648611E7A2F962E90080EFD58751" ,
143
144
pageKey: " W69" ,
144
145
isAuthoring: false ,
146
+ instanceId: " A3B45ED63F49EE11FE53CA946299FC7C" ,
145
147
});
146
148
} catch (err) {
147
149
// The other error handling logic here
@@ -160,4 +162,4 @@ The case "the input parameter fails input validation" contains:
160
162
161
163
- The field value's data type isn't right
162
164
- ` objectId ` and ` projectId ` don't exist at the same time
163
- - ` pageKey ` , ` isAuthoring ` appears when ` objectId ` and ` projectId ` don't exist
165
+ - ` pageKey ` , ` isAuthoring ` , ` instanceId ` appears when ` objectId ` and ` projectId ` don't exist
0 commit comments