v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Data Export destinations

List destinations

Get a list of Data Export destinations configured across all projects and environments.

get/api/v2/destinations

Response

Destination collection response

_linksobject

The location and content type of related resources

Example response

{
  "_links": {
    "self": {
      "href": "/api/v2/destinations",
      "type": "application/json"
    }
  },
  "items": [
    {
      "_id": "610addeadbeefaa86ec9a7d4",
      "_links": {
        "parent": {
          "href": "/api/v2/destinations",
          "type": "application/json"
        },
        "self": {
          "href": "/api/v2/destinations/my-project/my-environment/610addeadbeefaa86ec9a7d4",
          "type": "application/json"
        }
      },
      "name": "example-destination",
      "kind": "google-pubsub",
      "version": 1,
      "config": "{\"project\":\"test-prod\",\"topic\":\"ld-pubsub-test-192301\"}",
      "on": true,
      "_access": {
        "denied": [
          {
            "reason": {
              "resources": [
                "proj/*:env/*;qa_*:/flag/*"
              ],
              "actions": [
                "*"
              ],
              "effect": "allow"
            }
          }
        ],
        "allowed": [
          {
            "reason": {
              "resources": [
                "proj/*:env/*;qa_*:/flag/*"
              ],
              "actions": [
                "*"
              ],
              "effect": "allow"
            }
          }
        ]
      }
    }
  ]
}