URnetwork
Copyright 2024 BringYour, Inc.
Create a new network. A user authority can be associated with at most one network.
email or phone number
user consent to accept terms of service
const response = await fetch('https://api.bringyour.com/auth/network-create', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "network": { "by_jwt": "text", "network_id": "text", "network_name": "text" }, "verification_required": { "user_auth": "text" }, "error": { "message": "text" } }