diff --git a/docs/embedding-context/embedding-context.md b/docs/embedding-context/embedding-context.md index ce6afc4..f4d562b 100644 --- a/docs/embedding-context/embedding-context.md +++ b/docs/embedding-context/embedding-context.md @@ -108,13 +108,14 @@ This API could be used to navigate to an arbitrary page on the OOTB Library. #### Input Parameters -| Parameter Name | Data Type | Description | Is Required | -| ---------------------- | --------- | ----------------------------------------------- | ----------- | -| pageInfo.applicationId | string | The application ID, which must be a GUID. | false | -| pageInfo.projectId | string | The project ID, which must be a GUID. | false | -| pageInfo.objectId | string | The object ID, which must be a valid object id. | false | -| pageInfo.pageKey | string | The page key. | false | -| pageInfo.isAuthoring | boolean | Go to the authoring page or not. | false | +| Parameter Name | Data Type | Description | Is Required | +| ---------------------- | --------- | ------------------------------------------------------------ | ----------- | +| pageInfo.applicationId | string | The application ID, which must be a GUID. | false | +| pageInfo.projectId | string | The project ID, which must be a GUID. | false | +| pageInfo.objectId | string | The object ID, which must be a valid object id. | false | +| pageInfo.pageKey | string | The page key. | false | +| pageInfo.isAuthoring | boolean | Go to the authoring page or not. | false | +| pageInfo.instanceId | string | The instance id, which must be a valid dashboard instanceId. | false | The API call like `embeddingContext.goToPage()` will navigate to the homepage. @@ -142,6 +143,7 @@ try { objectId: "EC70648611E7A2F962E90080EFD58751", pageKey: "W69", isAuthoring: false, + instanceId: "A3B45ED63F49EE11FE53CA946299FC7C", }); } catch (err) { // The other error handling logic here @@ -160,4 +162,4 @@ The case "the input parameter fails input validation" contains: - The field value's data type isn't right - `objectId` and `projectId` don't exist at the same time -- `pageKey`, `isAuthoring` appears when `objectId` and `projectId` don't exist +- `pageKey`, `isAuthoring`, `instanceId` appears when `objectId` and `projectId` don't exist diff --git a/docs/whats-new-in-the-embedding-sdk.md b/docs/whats-new-in-the-embedding-sdk.md index 9615562..b77e894 100644 --- a/docs/whats-new-in-the-embedding-sdk.md +++ b/docs/whats-new-in-the-embedding-sdk.md @@ -5,6 +5,11 @@ description: In each release, changes are made to make the MicroStrategy SDK mor In each release, changes are made to make the MicroStrategy SDK more powerful and easier to use. +## Strategy ONE August 2025 + +- [Support Dashboard Instance Id in goToPage()](./embedding-context/#gotopagepageinfo) + - Support to input the dashboard instance id in the API `EmbeddingContext.goToPage()` in iframe Embedding SDK. + ## Strategy ONE July 2025 - [Get the dashboard instance ID](./native-embedding-architecture/dossier-info-api#get-dashboard-instance-id)