Creates a request for an Individual in our community
Request has been created successfully
const response = await fetch('https://api-uat.mioid.preventor.com/v1/business/activities/requests', { method: 'POST', headers: { "Authorization": "text", "x-api-key": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "phone": { "phone_country_code": "text", "phone_number": "text" }, "description": "text", "validity_threshold": { "time_unit": "text", "amount": 0 } }), }); const data = await response.json();
{ "status": 400, "code": "BDRQST", "message": "Some properties are invalid or missing on your request" }