Get trust center access requests

This endpoint returns requests of all statuses except "pending" by default

Securitybearer
Request
query Parameters
page
number >= 1
Default: 1

Which page of data are you requesting

limit
number [ 1 .. 50 ]
Default: 20

How many items are you requesting

sortDir
string

Which direction to sort the data (default: ASC)

Enum: "ASC" "DESC"
Example: sortDir=ASC
q
string <= 100 characters

Filter data to search requests

Example: q=Drata
status
string

Filter request by status

Enum: "PROCESS_ERROR" "APPROVED" "DENIED" "NDA_SENT" "NDA_SIGNED" "FILES_SENT" "NDA_EXPIRED" "PENDING" "REVOKED" "ACCESS_EXPIRED" "AUTO_APPROVED"
Example: status=APPROVED
Responses
200
400

Malformed data and/or validation errors

401

Invalid Authorization

402

You must upgrade your plan to use this feature

403

You are not allowed to perform this action

412

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

500

Internal server error

get/trust-center/requests
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "requestId": "aaaaaaaa-bbbb-0000-cccc-dddddddddddd",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "expirationDate": "2025-07-01T16:45:55.246Z",
      • "name": "Adam",
      • "lastname": "Markowitz",
      • "email": "[email protected]",
      • "company": "Socpilot",
      • "flowType": "SELF",
      • "isAutoApproved": false,
      • "status": "APPROVED",
      • "reviewedAt": "2025-07-01T16:45:55.246Z"
      }
    ],
  • "page": 1,
  • "limit": 10,
  • "total": 100
}