Skip to main content
GET
/
access-requests
/
{requestId}
Get Access Request by ID
curl --request GET \
  --url https://api.memoram.app/api/v1/access-requests/{requestId} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}
Retrieve the details and status of a specific access request using its unique ID.

Authorization

Requires Bearer token authentication using your Developer JWT.

Authorizations

Authorization
string
header
required

JWT token obtained via /auth/token endpoint.

Path Parameters

requestId
string
required

The unique ID of the access request (e.g., cm8r8ny2i001mm24853tqfd62).

Response

Details of the access request.

id
string

Unique ID of the access request.

status
enum<string>

The current status of the access request.

Available options:
pending,
approved,
rejected,
revoked
reason
string

The reason provided when creating the request.

memoryKey
string

The user's memory key associated with this request.

user_id
string<uuid>

The unique ID of the user this request pertains to (available once linked).

aiConnectorId
string

The ID of the AI Connector (developer application) that made the request.

createdAt
string<date-time>

Timestamp when the request was created.

updatedAt
string<date-time>

Timestamp when the request was last updated (e.g., approved/rejected).