List Matters
AuthenticationRequires bearerAuth.
Description
Returns Matters in the authenticated Workspace, newest first by default.
Parameters
limitqueryintegerdefault:
20Maximum number of records to return, from 1 to 100.
cursorquerystring
Opaque cursor from the previous page response.
statusquerystring
Allowed values:
draftnegotiatingawaiting_approvalready_for_signatureexecutedclosedReturn only Matters in this lifecycle status.
owner_idquerystring
Return only Matters assigned to this Workspace member.
updated_afterquerystring <date-time>
Return Matters updated after this ISO 8601 timestamp.
Responses
200A page of Matters.
application/jsondataobject[]required
next_cursorstring | nullrequired
Cursor for the next page
Example response
{
"data": [
{
"id": "mat_01JAZ6Q7K2",
"name": "Example Counterparty services agreement",
"agreement_type": "Master services agreement",
"counterparty_name": "Example Counterparty, Inc.",
"status": "negotiating",
"owner_id": "usr_01J9M4X8D2",
"target_signature_date": "2026-08-28",
"created_at": "2026-07-08T16:24:00Z",
"updated_at": "2026-07-11T19:42:13Z"
}
],
"next_cursor": "eyJ1cGRhdGVkX2F0IjoiMjAyNi0wNy0xMSJ9"
}401The API key is missing, malformed, expired, or revoked.
application/jsonerrorobjectrequired
Example response
{
"error": {
"code": "unauthorized",
"message": "Provide a valid bearer API key.",
"request_id": "req_01JAZA0P8M"
}
}