Google Cloud Talent Solution Tenants API

The Tenants API from Google Cloud Talent Solution — 2 operation(s) for tenants.

Operations 4

GET /projects/{projectId}/tenants Google Cloud Talent Solution List tenants #
POST /projects/{projectId}/tenants Google Cloud Talent Solution Create a tenant #
GET /projects/{projectId}/tenants/{tenantId} Google Cloud Talent Solution Get a tenant #
DELETE /projects/{projectId}/tenants/{tenantId} Google Cloud Talent Solution Delete a tenant #

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-talent-solution-tenants-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-talent-solution-tenants-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Cloud Talent Solution Companies Tenants API
  description: The Cloud Talent Solution API provides job search, job posting management, company profiles, and tenant administration for building intelligent talent acquisition applications powered by machine learning.
  version: 4.0.0
  contact:
    name: Google Cloud
    url: https://cloud.google.com/solutions/talent-solution
servers:
- url: https://jobs.googleapis.com/v4
  description: Google Cloud Talent Solution Production
tags:
- name: Tenants
paths:
  /projects/{projectId}/tenants:
    get:
      operationId: listTenants
      summary: Google Cloud Talent Solution List tenants
      description: Lists all tenants associated with the project.
      tags:
      - Tenants
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  tenants:
                    type: array
                    items:
                      $ref: '#/components/schemas/Tenant'
    post:
      operationId: createTenant
      summary: Google Cloud Talent Solution Create a tenant
      description: Creates a new tenant within the project.
      tags:
      - Tenants
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Tenant'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tenant'
  /projects/{projectId}/tenants/{tenantId}:
    get:
      operationId: getTenant
      summary: Google Cloud Talent Solution Get a tenant
      description: Retrieves a specific tenant by ID.
      tags:
      - Tenants
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: tenantId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tenant'
    delete:
      operationId: deleteTenant
      summary: Google Cloud Talent Solution Delete a tenant
      description: Deletes a specific tenant.
      tags:
      - Tenants
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: tenantId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
components:
  schemas:
    Tenant:
      type: object
      properties:
        name:
          type: string
          description: Resource name of the tenant.
        externalId:
          type: string
          description: Client-side tenant identifier.
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.google.com/o/oauth2/auth
          tokenUrl: https://oauth2.googleapis.com/token
          scopes:
            https://www.googleapis.com/auth/jobs: Manage job listings
            https://www.googleapis.com/auth/cloud-platform: Full access to Google Cloud