Access Grants
View Access Requests
async function readInbox() {
const session = await initializeAndLoginSession();
const walletAPI = `https://datawallet.inrupt.com/inbox`;
if (!session) {
throw new Error("Session is undefined");
}
const response = await session.fetch(walletAPI, {
method: "GET",
});
if (response.status === 200) {
const fetchAR = await response.json();
return fetchAR;
}
}Accept Access Request
View Access Grants
Last updated