URnetwork
Copyright 2024 BringYour, Inc.
Creates an anonymous payment identifier to be used with purchases. This keeps network information out of the payment processor system. For example in Google Play this is called the "obfuscated account id".
udid
const response = await fetch('https://api.bringyour.com/subscription/create-payment-id', { method: 'POST', headers: { "Authorization": "Bearer <token>", "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "subscription_payment_id": "text", "error": { "message": "text" } }