Javascript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.supermemory.ai/v3/connections/{connectionId}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "createdAt": "<string>", "documentLimit": 123, "email": "<string>", "expiresAt": "<string>", "id": "<string>", "metadata": {}, "provider": "<string>" }
Get connection details with id
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Connection details
Show child attributes
Was this page helpful?