Create trust center request

Create a trust center request for private documents. This endpoint is only available on Trust Center Pro.

Securitybearer
Request
Request Body schema: application/json
required
email
required
string

Email of requester

name
required
string

First name of requester

lastname
required
string

Last name of requester

company
required
string

Company of requester

acceptTerms
required
boolean

Accept the NDA terms and conditions

required
Array of objects (TrustCenterRequestDocumentTypePublicDto)

Private documents to request access

flowType
required
string

Type of private flow

Enum: "SELF" "DIGITAL_SIGNATURE" "NO_NDA_REQUIRED" "SALESFORCE_CRM"
Responses
201

Record created!

400

Malformed data and/or validation errors

401

Invalid Authorization

403

You are not allowed to perform this action

500

Internal server error

default

Response Code: 412

You must accept the Drata terms and conditions to use the API

post/trust-center/requests
Request samples
application/json
{
  • "email": "[email protected]",
  • "name": "FirstName",
  • "lastname": "LastName",
  • "company": "Company",
  • "acceptTerms": true,
  • "documents": [
    • {
      • "documentId": 1,
      • "type": "POLICY"
      },
    • {
      • "documentId": 2,
      • "type": "SECURITY_REPORT"
      }
    ],
  • "flowType": "SELF"
}
Response samples
application/json
{
  • "statusCode": 0,
  • "message": { },
  • "code": 0,
  • "debugInfo": { }
}