Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Cloud Infrastructure / Google / Service Consumer Management API
Service Consumer Management API logo

Google Service Consumer Management API

Browse all Google APIs
✓ Official Vendor SpecCloud InfrastructureNetworkingoauth212 EndpointsREST

For Agents

Programmatically provision and manage per-consumer tenant projects for services built on Google's Service Infrastructure.

Use for: Create a new tenant project for a customer onboarding to my managed service, Attach an existing customer project as a tenant under my service, Apply IAM bindings and billing config to a freshly provisioned tenant project, Remove a tenant project after a customer cancels

Not supported: Does not handle service definition publishing, end-user authentication, or workload deployment — use for producer-side tenant project provisioning and lifecycle only.

Service Consumer Management is the Google Cloud API service producers use to manage tenant projects and tenancy units for services built on Service Infrastructure. It lets producers create per-consumer tenant projects, attach existing projects, apply project-level configuration like IAM bindings and billing accounts, and clean up by detaching, removing, or undeleting projects. This is the control plane behind multi-tenant SaaS-on-GCP offerings such as Cloud SQL or AlloyDB private services.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Service Consumer Management API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Service Consumer Management API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Service Consumer Management API.

Create and search tenancy units associated with a service and consumer

Add and remove tenant projects within a tenancy unit, including dedicated and shared modes

Attach existing GCP projects as tenant projects on a tenancy unit

Apply project-level configuration (IAM, billing, services) to attached tenant projects

Delete or undelete tenant projects to manage consumer offboarding and recovery

Track long-running operations for asynchronous tenancy actions

Use Cases

Patterns agents use Service Consumer Management API for, with concrete tasks.

★ Multi-Tenant SaaS Provisioning on GCP

Service producers building managed offerings on top of GCP (private databases, dedicated networks, regulated workloads) use Service Consumer Management to spin up an isolated tenant project per customer, apply baseline IAM and billing config, and tear it down when the customer leaves. The API replaces ad-hoc Resource Manager + Billing + IAM scripts with a single tenancy-unit abstraction.

Call POST /v1/{+parent}/tenancyUnits:addProject with a tenant project config that sets billingConfig.billingAccount and an IAM policy for the customer's service account.

Customer Offboarding Cleanup

When a customer leaves, automation walks the tenancy unit, removes each tenant project, and cancels any in-flight long-running operations. Service Consumer Management exposes deleteProject, removeProject, and undeleteProject so the workflow is auditable and reversible if a project is removed in error.

Call POST /v1/{+name}:removeProject for each tenant project in the tenancy unit, then poll the returned operations until done=true.

Tenant Configuration Refresh

Periodically reapply baseline configuration (services enabled, IAM bindings, audit log settings) across every tenant project to enforce policy drift back to a known-good state. The applyProjectConfig action is idempotent and supports drift correction without recreating the project.

Call POST /v1/{+name}:applyProjectConfig with the standard tenant config for every tenancy unit returned by tenancyUnits.list.

AI Agent Tenancy Operator

An AI agent runs the on-call tenancy operations for a managed-service team — provisioning new tenants, retrying failed apply operations, and answering 'where is project X?' from chat. Through Jentic the agent searches by intent and never holds the producer's service account credentials directly.

On chat command, call tenancyUnits:addProject for the named customer, watch the long-running operation, then post the resulting tenant project id back to the channel.

Key Endpoints

12 endpoints — service consumer management is the google cloud api service producers use to manage tenant projects and tenancy units for services built on service infrastructure.

METHOD

PATH

DESCRIPTION

POST

/v1/{+parent}/tenancyUnits

Create a tenancy unit

POST

/v1/{+parent}/tenancyUnits:search

Search tenancy units for a service and consumer

POST

/v1/{+name}:addProject

Add a tenant project to a tenancy unit

POST

/v1/{+name}:attachProject

Attach an existing project as a tenant project

POST

/v1/{+name}:applyProjectConfig

Apply baseline configuration to a tenant project

POST

/v1/{+name}:removeProject

Remove a tenant project from a tenancy unit

POST

/v1/{+parent}/tenancyUnits

Create a tenancy unit

POST

/v1/{+parent}/tenancyUnits:search

Search tenancy units for a service and consumer

POST

/v1/{+name}:addProject

Add a tenant project to a tenancy unit

POST

/v1/{+name}:attachProject

Attach an existing project as a tenant project

POST

/v1/{+name}:applyProjectConfig

Apply baseline configuration to a tenant project

POST

/v1/{+name}:removeProject

Remove a tenant project from a tenancy unit

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Producer-side GCP service account credentials are stored encrypted in the Jentic MAXsystem vault. Agents receive a short-lived scoped access token at execution and never see the producer's long-lived key material.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (e.g. 'add a tenant project to a tenancy unit') and Jentic returns the matching tenancyUnits.addProject operation with its full input schema, so the agent does not have to navigate the producer-only documentation.

Time to first call

Time to first call

Direct integration: 3-5 days to wire up producer credentials, long-running operation polling, and tenant baseline configuration. Through Jentic: under 1 hour — search, load, execute, with operation polling handled at the SDK layer.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Google Service Management API

→

Producers register and manage their service definitions with Service Management; Service Consumer Management handles the per-consumer tenancy on top.

Use Service Management to publish a service. Use Service Consumer Management to provision tenant projects for that service.

Complementary

Google Cloud Resource Manager API

→

Manages GCP organizations, folders, and projects — the underlying primitives that tenant projects sit on.

Use Resource Manager for direct project lifecycle. Use Service Consumer Management when project lifecycle is wrapped in a service-tenancy abstraction.

Complementary

Google Service Usage API

→

Enables and disables Google services on a project, including tenant projects under management.

Use Service Usage to flip services on or off inside a tenant project. Use Service Consumer Management to manage the tenant project itself.

Alternative

Google Cloud IAM API

→

Manages service accounts and roles directly, an alternative to letting applyProjectConfig handle IAM bindings.

Use IAM API for fine-grained role and service account work. Use Service Consumer Management when IAM is part of a tenant baseline config.

FAQs

Specific to using Service Consumer Management API through Jentic.

What authentication does the Service Consumer Management API use?

It uses OAuth 2.0 with the cloud-platform scope and producer-side IAM permissions like roles/servicemanagement.serviceController on the producer service. Through Jentic the OAuth credentials are stored encrypted in MAXsystem and a scoped token is provided at execution.

Who is this API for — service producers or consumers?

It is the producer-side control plane. If you are publishing a managed service on GCP, you use this API to create and manage tenant projects per customer. End consumers do not call it directly.

What are the rate limits for the Service Consumer Management API?

Google enforces a default per-project quota of 60 write operations per minute and 600 read operations per minute. Many tenant operations are long-running, so the practical throughput is bounded by GCP project provisioning latency rather than the API quota.

How do I attach an existing customer project through Jentic?

Run the Jentic search query 'attach a tenant project in service consumer management', load POST /v1/{+name}:attachProject, and execute it with the externalResource pointing at the customer's project number. Jentic injects the producer service account token.

Can I undo a tenant project removal?

Yes, within the GCP undelete window. Call POST /v1/{+name}:undeleteProject on the tenant project resource. After the window expires the project is permanently deleted and cannot be restored via the API.

Why are most write operations long-running?

Tenant project creation, attachment, and config apply involve provisioning Resource Manager projects, billing links, and IAM bindings. The API returns an Operation; callers poll GET /v1/{+name} on the operations resource until done=true.

GET STARTED

Start building with Service Consumer Management API

Explore with Jentic
View OpenAPI Document