GET
/
access-requests
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.

Authorization

Requires Bearer token authentication using your Developer JWT.

Authorizations

Authorization
string
header
required

JWT token obtained via /auth/token endpoint.

Response

200
application/json

List of access requests.

The response is of type object.