Skip to main content
POST
/
v1
/
trust-portal
/
documents
/
list
List additional trust portal documents for the organization
curl --request POST \
  --url http://localhost:3333/v1/trust-portal/documents/list \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "organizationId": "org_6914cd0e16e4c7dccbb54426"
}
'
[
  {
    "id": "tdoc_abc123",
    "name": "security-overview.pdf",
    "createdAt": "2026-01-02T10:15:00.000Z",
    "updatedAt": "2026-01-02T10:15:00.000Z",
    "description": "Overview of our security program"
  }
]

Authorizations

X-API-Key
string
header
required

API key for authentication

Headers

X-Organization-Id
string

Organization ID (required for session auth, optional for API key auth)

Body

application/json
organizationId
string
required

Organization ID that owns the compliance resources

Example:

"org_6914cd0e16e4c7dccbb54426"

Response

200 - application/json

Documents retrieved successfully

id
string
required
Example:

"tdoc_abc123"

name
string
required
Example:

"security-overview.pdf"

createdAt
string
required
Example:

"2026-01-02T10:15:00.000Z"

updatedAt
string
required
Example:

"2026-01-02T10:15:00.000Z"

description
object
Example:

"Overview of our security program"