List Forward Memory Stores visible to the current account.
Returns the Memory Stores visible to the current account, ordered by ID in descending order with cursor pagination.
The response includes the default Identity store created automatically when a Session is created (
HTTP 200 OK
system_managed=true). This differs from the generic GET /api/v1/forward/resources?type=memory_store endpoint, which only returns stores explicitly created by users.
Path
GET /api/v1/forward/memory_stores
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT or admin SAT> |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum number of results per page, from 1 to 100. Default: 20. |
before_id | string | No | Backward pagination cursor. Mutually exclusive with after_id. |
after_id | string | No | Forward pagination cursor. Mutually exclusive with before_id. |
system_managed | boolean | No | Three-state filter: true returns only system-managed default stores; false returns only user-created stores; omit it to return both. |
Example requests
Example response
HTTP 200 OK
Empty-list response
Response fields
| Field | Type | Description |
|---|---|---|
data | array | Array of Memory Store objects. |
first_id | string/null | ID of the first record on the current page. |
last_id | string/null | ID of the last record on the current page. |
has_more | boolean | Whether more records are available. |
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 400 | invalid_request_error | limit is out of range, or after_id and before_id are both supplied. |
| 401 | authentication_error | The authentication token is missing or invalid. |
| 403 | permission_error | The caller cannot access the resource. |
| 500/502/503 | api_error | Forward or a dependent service failed. |