Skip to content

List Trust Center resources

GET
/trust-center/resources
curl --request GET \
--url 'https://api.vendorica.com/v1/trust-center/resources?published=true' \
--header 'Authorization: Bearer <token>'

The document catalogue published on the organization’s Trust Center, in display order. Pass ?published=true for only the live ones — without it drafts are included, which is what an editor syncing their own copy wants and what a public mirror does not. isGated is the line between a document anyone can read and one behind the NDA. Unpaginated: this is a hand-curated list with an explicit sortOrder, the same set the public page renders in full, so it is bounded by construction in a way the visitor-derived registers below are not. The blob’s storage key is deliberately not published — it is an internal vault location that grants nothing and belongs to no caller.

published
string
Allowed values: true false

Success

Media typeapplication/json
object
success
required
boolean
data
required
Array<object>
object
id
required
string format: uuid
organizationId
required
string format: uuid
title
required
string
description
required
string | null
category
required
string
sourceType
required
string
externalUrl
required
string | null
fileId
required
string | null format: uuid
isGated
required
boolean
isPublished
required
boolean
sortOrder
required
integer
createdAt
required
string format: date-time
updatedAt
required
string format: date-time
key
additional properties
timestamp
required
string format: date-time
requestId
string
message
string
Example
{
"success": true,
"data": [
{
"id": "b06ef84d-0db0-445d-8b77-7ffaab1e7cda",
"organizationId": "81ff3618-bec2-4aee-88a9-931745f286e9",
"title": "string",
"description": "string",
"category": "string",
"sourceType": "string",
"externalUrl": "string",
"fileId": "092d973b-abc5-4ebb-8f36-2ba8ce46bfc4",
"isGated": true,
"isPublished": true,
"sortOrder": 1,
"createdAt": "2026-08-19T09:41:12.004Z",
"updatedAt": "2026-08-19T09:41:12.004Z"
}
],
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H",
"message": "string"
}

Validation error

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Bad request",
"code": "BAD_REQUEST",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Unauthorized

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Unauthorized",
"code": "UNAUTHORIZED",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Forbidden — missing scope

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Forbidden",
"code": "FORBIDDEN",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Not found

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Resource not found",
"code": "NOT_FOUND",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}

Rate limit exceeded

Media typeapplication/json
object
success
required
boolean
error
required
string
code
required
string
details
timestamp
required
string format: date-time
requestId
string
Example
{
"success": false,
"error": "Too many requests",
"code": "TOO_MANY_REQUESTS",
"timestamp": "2026-08-19T09:41:12.004Z",
"requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"
}