List user's memos
GET
/api/dashboard/memos
const url = 'https://example.com/api/dashboard/memos?limit=20&offset=0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/dashboard/memos?limit=20&offset=0' \ --header 'Authorization: Bearer <token>'Returns paginated list of memos for the authenticated user with optional filters. Includes both owned deals (from Redis queue) and shared deals (from deal_access table).
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” sort_by
limit
Limit
integer
offset
Offset
integer
Responses
Section titled “ Responses ”Successful Response
Media type application/json
MemoListResponse
Response for memo list.
object
memos
required
Memos
Array<object>
DealQueueSummarySummary for Deal Room display.
Reduced payload for list views. Uses total=False so enrichment fields (shared, collaborator_count, last_activity_*) are optional without requiring them in every dict literal.
object
deal_id
Deal Id
string
deal_name
Deal Name
string
status
Status
string
created_at
Created At
string
sections_approved
Sections Approved
integer
sections_total
Sections Total
integer
total
required
Total
integer
has_more
required
Has More
boolean
Example generated
{ "memos": [ { "deal_id": "example", "deal_name": "example", "status": "example", "created_at": "example", "updated_at": "example", "sections_approved": 1, "sections_total": 1, "canvas_url": "example", "deal_type": "example", "asset_type": "example", "sponsor_name": "example", "hero_image_url": "example", "org_id": "example", "shared": true, "collaborator_count": 1, "last_activity_type": "example", "last_activity_at": "example", "incomplete_delivery_blocked": true } ], "total": 1, "has_more": true}Validation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}