Google Cloud Eventarc Projects API

The Projects API from Google Cloud Eventarc — 5 operation(s) for projects.

Operations 10

GET /v1/projects/{project}/locations/{location}/triggers Google Cloud Eventarc List triggers #
POST /v1/projects/{project}/locations/{location}/triggers Google Cloud Eventarc Create a trigger #
GET /v1/projects/{project}/locations/{location}/triggers/{trigger} Google Cloud Eventarc Get a trigger #
PATCH /v1/projects/{project}/locations/{location}/triggers/{trigger} Google Cloud Eventarc Update a trigger #
DELETE /v1/projects/{project}/locations/{location}/triggers/{trigger} Google Cloud Eventarc Delete a trigger #
GET /v1/projects/{project}/locations/{location}/channels Google Cloud Eventarc List channels #
POST /v1/projects/{project}/locations/{location}/channels Google Cloud Eventarc Create a channel #
GET /v1/projects/{project}/locations/{location}/channels/{channel} Google Cloud Eventarc Get a channel #
DELETE /v1/projects/{project}/locations/{location}/channels/{channel} Google Cloud Eventarc Delete a channel #
GET /v1/projects/{project}/locations/{location}/providers Google Cloud Eventarc List providers #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/google-cloud-eventarc-projects-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

google-cloud-eventarc-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Cloud Eventarc Projects API
  description: The Eventarc API enables event-driven architecture by allowing you to create triggers that route events from providers to target destinations such as Cloud Run, Cloud Functions, GKE, and Workflows.
  version: v1
  contact:
    name: Google Cloud
    url: https://cloud.google.com/eventarc/docs
servers:
- url: https://eventarc.googleapis.com
tags:
- name: Projects
paths:
  /v1/projects/{project}/locations/{location}/triggers:
    get:
      operationId: listTriggers
      summary: Google Cloud Eventarc List triggers
      description: Lists triggers in a project and location.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListTriggersResponse'
      tags:
      - Projects
    post:
      operationId: createTrigger
      summary: Google Cloud Eventarc Create a trigger
      description: Creates a new event trigger.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: triggerId
        in: query
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Trigger'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Operation'
      tags:
      - Projects
  /v1/projects/{project}/locations/{location}/triggers/{trigger}:
    get:
      operationId: getTrigger
      summary: Google Cloud Eventarc Get a trigger
      description: Gets an event trigger.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: trigger
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Trigger'
      tags:
      - Projects
    patch:
      operationId: updateTrigger
      summary: Google Cloud Eventarc Update a trigger
      description: Updates an event trigger.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: trigger
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Trigger'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Operation'
      tags:
      - Projects
    delete:
      operationId: deleteTrigger
      summary: Google Cloud Eventarc Delete a trigger
      description: Deletes an event trigger.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: trigger
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Operation'
      tags:
      - Projects
  /v1/projects/{project}/locations/{location}/channels:
    get:
      operationId: listChannels
      summary: Google Cloud Eventarc List channels
      description: Lists channels in a project and location.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListChannelsResponse'
      tags:
      - Projects
    post:
      operationId: createChannel
      summary: Google Cloud Eventarc Create a channel
      description: Creates a new channel for event routing.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: channelId
        in: query
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Channel'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Operation'
      tags:
      - Projects
  /v1/projects/{project}/locations/{location}/channels/{channel}:
    get:
      operationId: getChannel
      summary: Google Cloud Eventarc Get a channel
      description: Gets a channel.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: channel
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Channel'
      tags:
      - Projects
    delete:
      operationId: deleteChannel
      summary: Google Cloud Eventarc Delete a channel
      description: Deletes a channel.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: channel
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Operation'
      tags:
      - Projects
  /v1/projects/{project}/locations/{location}/providers:
    get:
      operationId: listProviders
      summary: Google Cloud Eventarc List providers
      description: Lists event providers in a project and location.
      parameters:
      - name: project
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListProvidersResponse'
      tags:
      - Projects
components:
  schemas:
    ListChannelsResponse:
      type: object
      properties:
        channels:
          type: array
          items:
            $ref: '#/components/schemas/Channel'
        nextPageToken:
          type: string
    Trigger:
      type: object
      properties:
        name:
          type: string
          description: The trigger name in the format projects/{project}/locations/{location}/triggers/{trigger}.
        eventFilters:
          type: array
          items:
            $ref: '#/components/schemas/EventFilter'
        serviceAccount:
          type: string
        destination:
          $ref: '#/components/schemas/Destination'
        transport:
          $ref: '#/components/schemas/Transport'
        channel:
          type: string
        createTime:
          type: string
          format: date-time
        updateTime:
          type: string
          format: date-time
    ListProvidersResponse:
      type: object
      properties:
        providers:
          type: array
          items:
            $ref: '#/components/schemas/Provider'
        nextPageToken:
          type: string
    GKE:
      type: object
      properties:
        cluster:
          type: string
        location:
          type: string
        namespace:
          type: string
        service:
          type: string
        path:
          type: string
    Transport:
      type: object
      properties:
        pubsub:
          type: object
          properties:
            topic:
              type: string
            subscription:
              type: string
    ListTriggersResponse:
      type: object
      properties:
        triggers:
          type: array
          items:
            $ref: '#/components/schemas/Trigger'
        nextPageToken:
          type: string
    EventFilter:
      type: object
      properties:
        attribute:
          type: string
          description: The name of the event filter attribute.
        value:
          type: string
          description: The value of the event filter attribute.
        operator:
          type: string
          description: The operator used for matching the event filter.
    Destination:
      type: object
      properties:
        cloudRun:
          $ref: '#/components/schemas/CloudRun'
        cloudFunction:
          type: string
        gke:
          $ref: '#/components/schemas/GKE'
        workflow:
          type: string
    Operation:
      type: object
      properties:
        name:
          type: string
        done:
          type: boolean
        metadata:
          type: object
        response:
          type: object
        error:
          type: object
    CloudRun:
      type: object
      properties:
        service:
          type: string
        path:
          type: string
        region:
          type: string
    Channel:
      type: object
      properties:
        name:
          type: string
        provider:
          type: string
        state:
          type: string
          enum:
          - STATE_UNSPECIFIED
          - PENDING
          - ACTIVE
          - INACTIVE
        createTime:
          type: string
          format: date-time
        updateTime:
          type: string
          format: date-time
    Provider:
      type: object
      properties:
        name:
          type: string
        displayName:
          type: string
        eventTypes:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
              description:
                type: string