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 / Azure / ACE Provisioning ManagementPartner
ACE Provisioning ManagementPartner logo

Microsoft Azure ACE Provisioning ManagementPartner

Browse all Azure APIs
★ Only Publicly Available OpenAPI DocumentCloud InfrastructureComputeoauth26 EndpointsREST

For Agents

Register, look up, update, or remove the Microsoft Cloud Solution Provider partner identifier (MPN ID) linked to an Azure tenant.

Use for: Register MPN ID 1234567 as the partner of record on this Azure tenant, Check which Microsoft partner is currently linked to my subscription, Update the partner association to a new MPN ID after a reseller change, Remove the existing partner of record from the tenant

Not supported: Does not provision Azure resources, manage billing, or handle partner onboarding contracts — use only for binding and querying the MPN ID of record on an Azure tenant.

Jentic publishes the only available OpenAPI specification for ACE Provisioning ManagementPartner, keeping it validated and agent-ready. This API manages the linkage between an Azure customer subscription and a Microsoft Cloud Solution Provider partner identifier (MPN ID), exposing operations to register, retrieve, update, and delete the partner association under Microsoft.ManagementPartner. It is the surface a partner uses to claim Partner Admin Link or Partner Earned Credit visibility on a customer tenant.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the ACE Provisioning ManagementPartner to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the ACE Provisioning ManagementPartner, 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 ACE Provisioning ManagementPartner API.

Register a Microsoft Partner Network identifier against the current Azure tenant

Retrieve the partner record currently associated with the tenant

Update an existing partner association to a different MPN ID

Delete a partner association when the relationship ends

List the operations the Microsoft.ManagementPartner provider supports

Verify partner link status before claiming Partner Earned Credit

Use Cases

Patterns agents use ACE Provisioning ManagementPartner API for, with concrete tasks.

★ Claim Partner of Record on a Customer Tenant

When a Microsoft partner needs to be recognised on a customer's Azure tenant for Partner Admin Link, Partner Earned Credit, or co-sell attribution, they call PUT /providers/Microsoft.ManagementPartner/partners/{partnerId} with their MPN ID. The API binds that identifier to the tenant so downstream Azure billing and partner attribution systems see the relationship.

Register MPN ID 1234567 against the current tenant via PUT /providers/Microsoft.ManagementPartner/partners/1234567

Audit Existing Partner Linkage

Operations and finance teams periodically audit which Microsoft partner is recognised on each Azure tenant to validate billing attribution and renewal contacts. GET /providers/Microsoft.ManagementPartner/partners returns the active partner record so reporting pipelines can flag missing or stale links across a tenant fleet.

Retrieve the active partner record for the tenant and report the MPN ID, state, and last update timestamp

Reseller Transition Cleanup

When a customer changes resellers, the outgoing partner association must be removed and the incoming one registered to keep Partner Earned Credit aligned. The DELETE and PUT operations on /providers/Microsoft.ManagementPartner/partners/{partnerId} make this a two-step transactional change instead of a manual portal task.

Delete partner record 7654321 and register replacement MPN ID 1234567 in a single workflow

Agent-Driven Partner Compliance Checks

An AI agent running tenant compliance reviews can confirm that every customer subscription has the correct partner link before billing close. Through Jentic, the agent searches for 'check Microsoft partner link', loads the GET schema, and returns the MPN ID per tenant without leaving the conversation. The Azure OAuth token is held in the credential vault.

Search Jentic for 'check Microsoft partner link', load GET /providers/Microsoft.ManagementPartner/partners, and return the linked MPN ID for the tenant

Key Endpoints

6 endpoints — jentic publishes the only available openapi specification for ace provisioning managementpartner, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/providers/Microsoft.ManagementPartner/partners

Get the active partner record

GET

/providers/Microsoft.ManagementPartner/partners/{partnerId}

Get a specific partner by id

GET

/providers/Microsoft.ManagementPartner/operations

List provider operations

GET

/providers/Microsoft.ManagementPartner/partners

Get the active partner record

GET

/providers/Microsoft.ManagementPartner/partners/{partnerId}

Get a specific partner by id

GET

/providers/Microsoft.ManagementPartner/operations

List provider operations

Why Jentic?

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

Credential management

Credential isolation

Azure Active Directory OAuth 2.0 tokens are minted and rotated inside the Jentic vault (MAXsystem). Service principal client secrets stay encrypted; agents receive only a short-lived invocation token scoped to Microsoft.ManagementPartner.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'check Microsoft partner link') and Jentic returns the matching ManagementPartner operation with its input schema, removing the need to traverse Azure REST docs.

Time to first call

Time to first call

Direct ARM integration: 1-2 days for AAD app registration, token acquisition, and request signing. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Azure Resource Management Client

→

Manages subscriptions, resource groups, and tags that the partner link applies to.

Use Resource Management for the tenant and subscription lifecycle; use ManagementPartner for partner-of-record attribution on top.

Complementary

Azure Policy Client

→

Defines and assigns governance policies that may include partner-link requirements.

Pair Policy with ManagementPartner to enforce that every subscription carries an MPN ID.

Complementary

Azure Advisor Management Client

→

Surfaces cost and operational recommendations that partners often act on for customers.

After confirming Partner Earned Credit eligibility, use Advisor for the workload-level optimisation actions a partner delivers.

FAQs

Specific to using ACE Provisioning ManagementPartner API through Jentic.

Why is there no official OpenAPI spec for ACE Provisioning ManagementPartner?

Microsoft Azure does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call ACE Provisioning ManagementPartner via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the ACE Provisioning ManagementPartner API use?

The API uses Azure Active Directory OAuth 2.0 bearer tokens (the azure_auth scheme) sent in the Authorization header. Jentic stores the service principal credential in the MAXsystem vault and mints scoped tokens at execution time, so agents never see the raw secret.

Can I register an MPN ID against an Azure tenant with this API?

Yes. Use PUT /providers/Microsoft.ManagementPartner/partners/{partnerId} where partnerId is your Microsoft Partner Network identifier. The tenant inherits Partner Admin Link visibility once the registration succeeds.

How do I check the current partner of record for a tenant?

Call GET /providers/Microsoft.ManagementPartner/partners. The response contains the active partner record including the MPN ID and state, which is the authoritative source for Partner Earned Credit eligibility.

What are the rate limits for this API?

Azure Resource Manager applies standard subscription throttling; this provider sees low call volume in practice because partner links rarely change. If you receive HTTP 429, honour the Retry-After header before retrying.

How do I audit partner links across many tenants through Jentic?

Run pip install jentic, then search Jentic with 'check Microsoft partner link'. Jentic returns GET /providers/Microsoft.ManagementPartner/partners with its input schema. Loop your tenant list and execute per-tenant; the OAuth token is resolved from the vault automatically.

GET STARTED

Start building with ACE Provisioning ManagementPartner API

Explore with Jentic
View OpenAPI Document