List the signed-in buyer's licenses and devices
GET
/v1/portal/licenses
const url = 'https://api.extport.dev/api/v1/portal/licenses';const options = { method: 'GET', headers: {cookie: 'extport_buyer_session=<extport_buyer_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.extport.dev/api/v1/portal/licenses \ --cookie extport_buyer_session=<extport_buyer_session>Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK
No buyer session