Skip to content

List user's memos

GET
/api/dashboard/memos
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).

status
Any of:
string
<= 50 characters

Filter by status

deal_type
Any of:
string
<= 100 characters

Filter by deal type

asset_type
Any of:
string
<= 100 characters

Filter by asset type

sponsor
Any of:
string
<= 200 characters

Filter by sponsor name (substring match)

search
Any of:
string
<= 200 characters

Search by deal name (substring match)

sort_by
Any of:
string
<= 50 characters

Sort order: newest, oldest, name_asc, name_desc, progress_desc, progress_asc, recently_active

limit
Limit
integer
default: 20 >= 1 <= 100
offset
Offset
integer
0

Successful Response

Media type application/json
MemoListResponse

Response for memo list.

object
memos
required
Memos
Array<object>
DealQueueSummary

Summary 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
updated_at
Any of:
string
sections_approved
Sections Approved
integer
sections_total
Sections Total
integer
canvas_url
Any of:
string
deal_type
Any of:
string
asset_type
Any of:
string
sponsor_name
Any of:
string
hero_image_url
Any of:
string
org_id
Any of:
string
shared
Any of:
boolean
collaborator_count
Any of:
integer
last_activity_type
Any of:
string
last_activity_at
Any of:
string
incomplete_delivery_blocked
Any of:
boolean
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>
ValidationError
object
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": {}
}
]
}