Messages & Threads

View as Markdown

Threads are identified by thid (thread id) and parent threads by pthid. Use GET /api/v1/didcomm/messages to inspect history.

$curl -H "Authorization: Bearer $JWT" \
> "https://adid.dev/api/v1/didcomm/messages?direction=received&thread_id=urn:uuid:thread-1&limit=50&offset=0"
Query paramTypeDefaultDescription
directionstringnonesent or received; omit for both
thread_idstringnoneFilter to a specific thid
limitint50Max items
offsetint0Starting index

Response is model.PaginatedResponse with each item containing id, type, direction, from, to, thid, body, created_at, and a connectionId link.