Get information about a referral
OK
Get information about all referrals
info
const response = await fetch('//api.client.nbcgate.tech/api/referral/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "avatar": "text", "countryId": 0, "createdDate": "text", "id": 0, "nameOwner": "text", "ownerSubType": 0, "ownerType": 0, "referral_program_level_id": 0, "siteUrl": "text", "status": 0 }
const response = await fetch('//api.client.nbcgate.tech/api/referral', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
[ { "avatar": "text", "country_id": 0, "created_date": "text", "id": 0, "owner_name": "text", "owner_sub_type": 0, "owner_type": 0, "site_url": "text", "status": 0, "today_amount": 0, "total_amount": 0 } ]