cURL
curl --request GET \ --url https://api.memoram.app/api/v1/access-requests \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "status": "pending", "reason": "<string>", "memoryKey": "<string>", "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "aiConnectorId": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } ], "total": 123 }
Retrieve a list of all access requests initiated by the authenticated developer account.
Bearer
JWT token obtained via /auth/token endpoint.
/auth/token
List of access requests.
Show child attributes
Unique ID of the access request.
The current status of the access request.
pending
approved
rejected
revoked
The reason provided when creating the request.
The user's memory key associated with this request.
The unique ID of the user this request pertains to (available once linked).
The ID of the AI Connector (developer application) that made the request.
Timestamp when the request was created.
Timestamp when the request was last updated (e.g., approved/rejected).
Total number of access requests.