GET
/
access-requests
/
{requestId}
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

200
application/json

Details of the access request.

The response is of type object.