Last updated 3 months ago
const response = await fetch('/v1/partner-portals/{portalId}', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "id": "text", "name": "text" }
const response = await fetch('/v1/partner-portals', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "paging": { "next": { "after": "text" } }, "data": [ { "id": "text", "name": "text" } ] }