Providers
Install Purchased Products
Install active marketplace purchases onto provider devices.
Before installing, read compatible releases for the purchased product and device.
Use the dashboard for normal install operations.
Before You Start
Confirm:
- checkout has completed,
- the purchase is active,
- the target device is owned by or linked to the provider organisation,
- the purchased product has a compatible release for the device,
- production install queueing is enabled for the environment.
In the Dashboard
- Open Marketplace.
- Select the marketplace instance.
- Open Provider.
- Open Devices.
- Search for the target device.
- Open the device.
- Open the Purchases tab.
- Select the purchased product.
- Review compatible releases.
- Choose the release version to install.
- Queue the install.
- Track install progress from the install status card.
If no compatible releases are shown, check the release manifest metadata and the device board/state.
Demo Lab
Use Demo Lab only for demonstration workflows. Demo installs are isolated from production checkout and install flows and use fixed demo resources.
What Happens Behind the Scenes
Infuse checks the purchase entitlement, device ownership, release compatibility, and requested version. If the request is accepted, Infuse queues an install operation and returns install tracking information.
API Equivalent
GET /marketplace/providers/devices/{deviceId}/purchases/{marketplaceItemId}/releases
Authorization: Bearer {provider_access_token}
Then queue the selected version for install.
POST /marketplace/providers/devices/{deviceId}/purchases/{marketplaceItemId}/install
Authorization: Bearer {provider_access_token}
Content-Type: application/json
{
"version": "1.4.2"
}
Track the install RPC status:
GET /marketplace/providers/rpc/{rpcId}
Authorization: Bearer {provider_access_token}