Standard Connections

Standard Connections let you integrate Drata with well-known third-party providers using Drata-defined credentials and data models, in contrast to Custom Connections, which use a user-defined schema.

List AWS Connections

Find AWS Connections matching the provided filters.

🔒 Requires AWS Connections: List AWS Connections permission.

Securitybearer
Request
query Parameters
cursor
string

This parameter is used to paginate through results. No value is needed for the first request. If there are additional results, the response will contain a pagination.cursor value that can be used in the subsequent request to retrieve the next page of results

size
number [ 1 .. 500 ]
Default: 50

Number of results to return

sort
string (SortTypeLimitedEnum)

Which field to sort by

Enum: "createdAt" "updatedAt"
sortDir
string (SortDirectionEnum)

The direction to sort the data

Enum: "ASC" "DESC"
includeTotalCount
boolean
Default: false

Include total count of all matching records in response. Only honored on first page (when cursor is null).

Example: includeTotalCount=false
expand[]
Array of strings (StandardConnectionExpandEnum)

List of sub-collections and sub-objects to expand

Items Value: "workspaces"
Responses
200
400

Malformed data and/or validation errors

401

Invalid Authorization

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/aws-connections
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "id": 1,
      • "clientAlias": "My AWS Connection",
      • "roleArn": "arn:aws:iam::123456789012:role/DrataAuditRole",
      • "externalId": "b3b7f7b0-6e4b-4e2a-9c2f-3e2f6f8f1a1b",
      • "state": "ACTIVE",
      • "createdById": 1,
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z",
      • "workspaces": [
        • {
          • "id": 1,
          • "primary": false,
          • "name": "Drata Automation",
          • "description": "Drata automates SOC 2 compliance",
          • "createdAt": "2025-07-01T16:45:55.246Z",
          • "updatedAt": "2025-07-01T16:45:55.246Z"
          }
        ]
      }
    ],
  • "pagination": {
    • "cursor": "string",
    • "totalCount": 0
    }
}

Create AWS Connection

Create a new AWS Connection by providing the ARN of an IAM Role for Drata to assume. The response includes the External ID to configure in the role's trust policy.

🔒 Requires AWS Connections: Create AWS Connection permission.

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

Name for the AWS Connection

roleArn
required
string

The ARN of the IAM Role Drata will assume to access this AWS account. The role must trust Drata and be configured with the External ID returned in the response.

workspaceIds
Array of numbers

IDs of the Workspaces to assign this AWS Connection to. Omit to leave the connection unassigned, in which case it must be assigned in Drata before its monitoring tests can run against it.

Responses
201

Created

400

Malformed data and/or validation errors

401

Invalid Authorization

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

post/aws-connections
Request samples
application/json
{
  • "name": "My AWS Connection",
  • "roleArn": "arn:aws:iam::123456789012:role/DrataAuditRole",
  • "workspaceIds": [
    • 1
    ]
}
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My AWS Connection",
  • "roleArn": "arn:aws:iam::123456789012:role/DrataAuditRole",
  • "externalId": "b3b7f7b0-6e4b-4e2a-9c2f-3e2f6f8f1a1b",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Get AWS Connection

🔒 Requires AWS Connections: List AWS Connections permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or AWS IAM Role ARN prefixed with roleArn: (e.g. roleArn:arn:aws:iam::123456789012:role/DrataAuditRole). Any / in the ARN must be percent-encoded as %2F, since it's part of a single URL path segment.

query Parameters
expand[]
Array of strings (StandardConnectionExpandEnum)

List of sub-collections and sub-objects to expand

Items Value: "workspaces"
Responses
200
401

Invalid Authorization

403

You are not allowed to perform this action

404

Not Found

412

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

500

Internal server error

get/aws-connections/{connectionId}
Request samples
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My AWS Connection",
  • "roleArn": "arn:aws:iam::123456789012:role/DrataAuditRole",
  • "externalId": "b3b7f7b0-6e4b-4e2a-9c2f-3e2f6f8f1a1b",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Update AWS Connection

Update an AWS Connection. Providing a new roleArn re-validates the connection via STS AssumeRole.

🔒 Requires AWS Connections: Update AWS Connection permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or AWS IAM Role ARN prefixed with roleArn: (e.g. roleArn:arn:aws:iam::123456789012:role/DrataAuditRole). Any / in the ARN must be percent-encoded as %2F, since it's part of a single URL path segment.

Request Body schema: application/json
required
name
string

Name for the AWS Connection

roleArn
string

The ARN of the IAM Role Drata will assume to access this AWS account. Providing a new value re-validates the connection via STS AssumeRole.

workspaceIds
Array of numbers

IDs of the Workspaces this AWS Connection should be assigned to. Replaces the current assignment: omit to leave it unchanged, or pass an empty array to unassign every Workspace.

Responses
200

Successful

400

Malformed data and/or validation errors

401

Invalid Authorization

403

You are not allowed to perform this action

404

Not Found

412

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

500

Internal server error

put/aws-connections/{connectionId}
Request samples
application/json
{
  • "name": "My Updated AWS Connection",
  • "roleArn": "arn:aws:iam::123456789012:role/DrataAuditRole",
  • "workspaceIds": [
    • 1
    ]
}
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My AWS Connection",
  • "roleArn": "arn:aws:iam::123456789012:role/DrataAuditRole",
  • "externalId": "b3b7f7b0-6e4b-4e2a-9c2f-3e2f6f8f1a1b",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Delete AWS Connection

🔒 Requires AWS Connections: Delete AWS Connection permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or AWS IAM Role ARN prefixed with roleArn: (e.g. roleArn:arn:aws:iam::123456789012:role/DrataAuditRole). Any / in the ARN must be percent-encoded as %2F, since it's part of a single URL path segment.

Responses
204

No Content

401

Invalid Authorization

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

delete/aws-connections/{connectionId}
Request samples
Response samples
application/json
{
  • "statusCode": 0,
  • "message": "string",
  • "code": 0,
  • "debugInfo": {
    • "name": "string",
    • "message": "string",
    • "stack": "string"
    }
}

List Azure Connections

Find Azure Connections matching the provided filters.

🔒 Requires Azure Connections: List Azure Connections permission.

Securitybearer
Request
query Parameters
cursor
string

This parameter is used to paginate through results. No value is needed for the first request. If there are additional results, the response will contain a pagination.cursor value that can be used in the subsequent request to retrieve the next page of results

size
number [ 1 .. 500 ]
Default: 50

Number of results to return

sort
string (SortTypeLimitedEnum)

Which field to sort by

Enum: "createdAt" "updatedAt"
sortDir
string (SortDirectionEnum)

The direction to sort the data

Enum: "ASC" "DESC"
includeTotalCount
boolean
Default: false

Include total count of all matching records in response. Only honored on first page (when cursor is null).

Example: includeTotalCount=false
expand[]
Array of strings (StandardConnectionExpandEnum)

List of sub-collections and sub-objects to expand

Items Value: "workspaces"
Responses
200
400

Malformed data and/or validation errors

401

Invalid Authorization

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/azure-connections
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "id": 1,
      • "clientAlias": "My Azure Connection",
      • "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
      • "applicationId": "4f812b7c-91d4-4b3a-9c17-6e2d6d5f9f3a",
      • "subscriptionId": "28ffcc9b-be6d-4bbf-b53a-057049debc38",
      • "state": "ACTIVE",
      • "createdById": 1,
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z",
      • "workspaces": [
        • {
          • "id": 1,
          • "primary": false,
          • "name": "Drata Automation",
          • "description": "Drata automates SOC 2 compliance",
          • "createdAt": "2025-07-01T16:45:55.246Z",
          • "updatedAt": "2025-07-01T16:45:55.246Z"
          }
        ]
      }
    ],
  • "pagination": {
    • "cursor": "string",
    • "totalCount": 0
    }
}

Create Azure Connection

Create a new Azure Connection using an Azure App Registration (Service Principal) and its client secret.

🔒 Requires Azure Connections: Create Azure Connection permission.

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

Name for the Azure Connection

tenantId
required
string

The Azure Active Directory Tenant ID

applicationId
required
string

The Application (client) ID of the Azure App Registration

applicationSecret
required
string

The client secret for the Azure App Registration. Never returned in any response.

subscriptionId
required
string

The Azure Subscription ID to connect

workspaceIds
Array of numbers

IDs of the Workspaces to assign this Azure Connection to. Omit to leave the connection unassigned, in which case it must be assigned in Drata before its monitoring tests can run against it.

Responses
201

Created

400

Malformed data and/or validation errors

401

Invalid Authorization

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

post/azure-connections
Request samples
application/json
{
  • "name": "My Azure Connection",
  • "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
  • "applicationId": "4f812b7c-91d4-4b3a-9c17-6e2d6d5f9f3a",
  • "applicationSecret": "abc123~ExampleClientSecretValue",
  • "subscriptionId": "28ffcc9b-be6d-4bbf-b53a-057049debc38",
  • "workspaceIds": [
    • 1
    ]
}
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My Azure Connection",
  • "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
  • "applicationId": "4f812b7c-91d4-4b3a-9c17-6e2d6d5f9f3a",
  • "subscriptionId": "28ffcc9b-be6d-4bbf-b53a-057049debc38",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Get Azure Connection

🔒 Requires Azure Connections: List Azure Connections permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or Azure Subscription ID prefixed with subscriptionId: (e.g. subscriptionId:28ffcc9b-be6d-4bbf-b53a-057049debc38).

query Parameters
expand[]
Array of strings (StandardConnectionExpandEnum)

List of sub-collections and sub-objects to expand

Items Value: "workspaces"
Responses
200
401

Invalid Authorization

403

You are not allowed to perform this action

404

Not Found

412

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

500

Internal server error

get/azure-connections/{connectionId}
Request samples
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My Azure Connection",
  • "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
  • "applicationId": "4f812b7c-91d4-4b3a-9c17-6e2d6d5f9f3a",
  • "subscriptionId": "28ffcc9b-be6d-4bbf-b53a-057049debc38",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Update Azure Connection

Update an Azure Connection. Providing any new credential fields re-validates the connection.

🔒 Requires Azure Connections: Update Azure Connection permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or Azure Subscription ID prefixed with subscriptionId: (e.g. subscriptionId:28ffcc9b-be6d-4bbf-b53a-057049debc38).

Request Body schema: application/json
required
name
string

Name for the Azure Connection

tenantId
string

The Azure Active Directory Tenant ID

applicationId
string

The Application (client) ID of the Azure App Registration

applicationSecret
string

The client secret for the Azure App Registration. Providing a new value re-validates the connection.

subscriptionId
string

The Azure Subscription ID to connect

workspaceIds
Array of numbers

IDs of the Workspaces this Azure Connection should be assigned to. Replaces the current assignment: omit to leave it unchanged, or pass an empty array to unassign every Workspace.

Responses
200

Successful

400

Malformed data and/or validation errors

401

Invalid Authorization

403

You are not allowed to perform this action

404

Not Found

412

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

500

Internal server error

put/azure-connections/{connectionId}
Request samples
application/json
{
  • "name": "My Updated Azure Connection",
  • "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
  • "applicationId": "4f812b7c-91d4-4b3a-9c17-6e2d6d5f9f3a",
  • "applicationSecret": "abc123~ExampleClientSecretValue",
  • "subscriptionId": "28ffcc9b-be6d-4bbf-b53a-057049debc38",
  • "workspaceIds": [
    • 1
    ]
}
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My Azure Connection",
  • "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
  • "applicationId": "4f812b7c-91d4-4b3a-9c17-6e2d6d5f9f3a",
  • "subscriptionId": "28ffcc9b-be6d-4bbf-b53a-057049debc38",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Delete Azure Connection

🔒 Requires Azure Connections: Delete Azure Connection permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or Azure Subscription ID prefixed with subscriptionId: (e.g. subscriptionId:28ffcc9b-be6d-4bbf-b53a-057049debc38).

Responses
204

No Content

401

Invalid Authorization

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

delete/azure-connections/{connectionId}
Request samples
Response samples
application/json
{
  • "statusCode": 0,
  • "message": "string",
  • "code": 0,
  • "debugInfo": {
    • "name": "string",
    • "message": "string",
    • "stack": "string"
    }
}

List GCP Connections

Find GCP Connections matching the provided filters.

🔒 Requires GCP Connections: List GCP Connections permission.

Securitybearer
Request
query Parameters
cursor
string

This parameter is used to paginate through results. No value is needed for the first request. If there are additional results, the response will contain a pagination.cursor value that can be used in the subsequent request to retrieve the next page of results

size
number [ 1 .. 500 ]
Default: 50

Number of results to return

sort
string (SortTypeLimitedEnum)

Which field to sort by

Enum: "createdAt" "updatedAt"
sortDir
string (SortDirectionEnum)

The direction to sort the data

Enum: "ASC" "DESC"
includeTotalCount
boolean
Default: false

Include total count of all matching records in response. Only honored on first page (when cursor is null).

Example: includeTotalCount=false
expand[]
Array of strings (StandardConnectionExpandEnum)

List of sub-collections and sub-objects to expand

Items Value: "workspaces"
Responses
200
400

Malformed data and/or validation errors

401

Invalid Authorization

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/gcp-connections
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "id": 1,
      • "clientAlias": "My GCP Connection",
      • "projectId": "my-project",
      • "state": "ACTIVE",
      • "createdById": 1,
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z",
      • "workspaces": [
        • {
          • "id": 1,
          • "primary": false,
          • "name": "Drata Automation",
          • "description": "Drata automates SOC 2 compliance",
          • "createdAt": "2025-07-01T16:45:55.246Z",
          • "updatedAt": "2025-07-01T16:45:55.246Z"
          }
        ]
      }
    ],
  • "pagination": {
    • "cursor": "string",
    • "totalCount": 0
    }
}

Create GCP Connection

Create a new GCP Connection by providing a GCP service account key. The service account must be granted read access to the resources Drata will scan.

🔒 Requires GCP Connections: Create GCP Connection permission.

Securitybearer
Request
Request Body schema: application/json
required
name
required
string <= 191 characters

Name for the GCP Connection

serviceAccountKey
required
string <json>

The GCP service account key, as the raw JSON contents of the key file downloaded from GCP IAM (stringified). Must include at least project_id, client_email, and private_key. Never returned in any response.

workspaceIds
Array of numbers

IDs of the Workspaces to assign this GCP Connection to. Omit to leave the connection unassigned, in which case it must be assigned in Drata before its monitoring tests can run against it.

Responses
201

Created

400

Malformed data and/or validation errors

401

Invalid Authorization

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

post/gcp-connections
Request samples
application/json
{
  • "name": "My GCP Connection",
  • "serviceAccountKey": "{\"type\":\"service_account\",\"project_id\":\"my-project\",...}",
  • "workspaceIds": [
    • 1
    ]
}
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My GCP Connection",
  • "projectId": "my-project",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Get GCP Connection

🔒 Requires GCP Connections: List GCP Connections permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or GCP Project ID prefixed with projectId: (e.g. projectId:my-project).

query Parameters
expand[]
Array of strings (StandardConnectionExpandEnum)

List of sub-collections and sub-objects to expand

Items Value: "workspaces"
Responses
200
401

Invalid Authorization

403

You are not allowed to perform this action

404

Not Found

412

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

500

Internal server error

get/gcp-connections/{connectionId}
Request samples
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My GCP Connection",
  • "projectId": "my-project",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Update GCP Connection

Update a GCP Connection. Providing a new serviceAccountKey re-validates the connection.

🔒 Requires GCP Connections: Update GCP Connection permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or GCP Project ID prefixed with projectId: (e.g. projectId:my-project).

Request Body schema: application/json
required
name
string <= 191 characters

Name for the GCP Connection

serviceAccountKey
string <json>

The GCP service account key, as the raw JSON contents of the key file downloaded from GCP IAM (stringified). Providing a new value re-validates the connection.

workspaceIds
Array of numbers

IDs of the Workspaces this GCP Connection should be assigned to. Replaces the current assignment: omit to leave it unchanged, or pass an empty array to unassign every Workspace.

Responses
200

Successful

400

Malformed data and/or validation errors

401

Invalid Authorization

403

You are not allowed to perform this action

404

Not Found

412

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

500

Internal server error

put/gcp-connections/{connectionId}
Request samples
application/json
{
  • "name": "My Updated GCP Connection",
  • "serviceAccountKey": "{\"type\":\"service_account\",\"project_id\":\"my-project\",...}",
  • "workspaceIds": [
    • 1
    ]
}
Response samples
application/json
{
  • "id": 1,
  • "clientAlias": "My GCP Connection",
  • "projectId": "my-project",
  • "state": "ACTIVE",
  • "createdById": 1,
  • "createdAt": "2025-07-01T16:45:55.246Z",
  • "updatedAt": "2025-07-01T16:45:55.246Z",
  • "workspaces": [
    • {
      • "id": 1,
      • "primary": false,
      • "name": "Drata Automation",
      • "description": "Drata automates SOC 2 compliance",
      • "createdAt": "2025-07-01T16:45:55.246Z",
      • "updatedAt": "2025-07-01T16:45:55.246Z"
      }
    ]
}

Delete GCP Connection

🔒 Requires GCP Connections: Delete GCP Connection permission.

Securitybearer
Request
path Parameters
required
number or string

Drata internal numeric ID (e.g. 10) or GCP Project ID prefixed with projectId: (e.g. projectId:my-project).

Responses
204

No Content

401

Invalid Authorization

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

delete/gcp-connections/{connectionId}
Request samples
Response samples
application/json
{
  • "statusCode": 0,
  • "message": "string",
  • "code": 0,
  • "debugInfo": {
    • "name": "string",
    • "message": "string",
    • "stack": "string"
    }
}