List Trust Center resources
const url = 'https://api.vendorica.com/v1/trust-center/resources?published=true';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Responses
Section titled “Responses”Success
object
object
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
object
Example
{ "success": false, "error": "Bad request", "code": "BAD_REQUEST", "timestamp": "2026-08-19T09:41:12.004Z", "requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"}Unauthorized
object
Example
{ "success": false, "error": "Unauthorized", "code": "UNAUTHORIZED", "timestamp": "2026-08-19T09:41:12.004Z", "requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"}Forbidden — missing scope
object
Example
{ "success": false, "error": "Forbidden", "code": "FORBIDDEN", "timestamp": "2026-08-19T09:41:12.004Z", "requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"}Not found
object
Example
{ "success": false, "error": "Resource not found", "code": "NOT_FOUND", "timestamp": "2026-08-19T09:41:12.004Z", "requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"}Rate limit exceeded
object
Example
{ "success": false, "error": "Too many requests", "code": "TOO_MANY_REQUESTS", "timestamp": "2026-08-19T09:41:12.004Z", "requestId": "req_01J5X8ZC3K4T7Q9M2W6B0N1V4H"}