URnetwork
Copyright 2024 BringYour, Inc.
Creates a code to share a device.
udid
Name of the device that will be shared to the guest
const response = await fetch('https://api.bringyour.com/device/create-share-code', { method: 'POST', headers: { "Authorization": "Bearer <token>", "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "share_code": "text", "error": { "message": "text" } }