Start and stop device sharing
Send ShareAI device sharing commands, distinguish accepted commands from observed state and verify the result in Console.
On this page
Use these commands to request a sharing-state change for one authorized device. The provider and device UUIDs must refer to the same relationship as the device access token.


https://api.shareai.now/api/v1/console/provider/{provider_uuid}/device-management/{device_uuid}/remote/start-sharingRequest that the connected device starts sharing.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: provider UUID and device access token
https://api.shareai.now/api/v1/console/provider/{provider_uuid}/device-management/{device_uuid}/remote/stop-sharingRequest that the device stops sharing.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: provider UUID and device access token
cURL
curl --fail-with-body --request POST \
"https://api.shareai.now/api/v1/console/provider/$PROVIDER_UUID/device-management/$DEVICE_UUID/remote/start-sharing" \
-u "$PROVIDER_UUID:$DEVICE_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
--data '{}'
Read the acknowledgement#
JSON
{
"status": "success",
"result": {
"accepted": true,
"command": "start-sharing",
"reason": "provider_api_start_sharing",
"message": "Start sharing command accepted."
}
}
This is an illustrative acknowledgement. accepted means the command was accepted for dispatch; it does not by itself prove that the device has transitioned, has a model loaded or is receiving work.
Verify the actual state#
- Read the command response and handle a rejected request.
- Check the device state and its sharing models in Console.
- Use sessions and activity to verify what the device actually did.
- If it stays unchanged, check connectivity, loaded models, device eligibility and the enabled Remote Control switches before retrying.
Stop carefully#
Use the same path with stop-sharing to request a stop. Keep already processed work distinct from the ability to receive future work. A stop request is not a refund or a deletion of session history.
Last updated September 15, 2026