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

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

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