Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/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.
Switch to light modeSwitch to dark mode
APIs / Cloud Infrastructure / Azure / MarketplaceOrdering.Agreements
MarketplaceOrdering.Agreements logo

Microsoft Azure MarketplaceOrdering.Agreements

Browse all Azure APIs
Agent-ready OpenAPI document · curated by JenticCloud InfrastructureComputeoauth27 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Sign, cancel, and inspect Azure Marketplace plan agreements so deployments can proceed. Useful for automating marketplace consent before provisioning third-party software.

Use for: I need to sign the marketplace agreement for a vendor's VM plan before deployment, List all signed marketplace agreements in this subscription, Cancel a marketplace agreement that is no longer needed, Get the current agreement for a publisher and offer

Not supported: Does not curate marketplace catalogs, deploy marketplace resources, or handle billing - use for managing marketplace plan agreements at subscription scope only.

Jentic publishes the only available OpenAPI specification for MarketplaceOrdering.Agreements, keeping it validated and agent-ready. The Azure Marketplace Ordering API manages the legal agreements that must be accepted before a marketplace plan can be deployed in a subscription. Use it to retrieve the current agreement for a publisher, offer, and plan combination, sign or cancel an agreement, and list every signed agreement in a subscription. Authentication is via Azure Active Directory OAuth 2.0 on Azure Resource Manager.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the MarketplaceOrdering.Agreements to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the MarketplaceOrdering.Agreements, 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fazure.com%2Fazure-marketplaceordering-agreements" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fazure.com%2Fazure-marketplaceordering-agreements" | 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 MarketplaceOrdering.Agreements API.

Retrieve the current marketplace agreement for a publisher, offer, and plan combination

Sign a marketplace agreement so the plan becomes deployable in the subscription

Cancel a previously signed marketplace agreement

List every signed marketplace agreement in a subscription for compliance review

Get a specific agreement by publisher, offer, and plan to verify acceptance state

Create or update an agreement record explicitly through the offerTypes path

Enumerate Microsoft.MarketplaceOrdering operations exposed for agreement tooling

Use Cases

Patterns agents use MarketplaceOrdering.Agreements API for, with concrete tasks.

★ Automate marketplace agreement acceptance

Provisioning pipelines call this API before deploying any third-party marketplace VM or solution to ensure the legal terms have been accepted. The agent retrieves the current agreement for the publisher, offer, and plan, inspects the terms payload, and POSTs the sign endpoint when policy permits, allowing the downstream resource creation to succeed without a manual portal step.

GET /subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId} to fetch terms, then POST .../sign to accept.

Audit signed marketplace agreements

Compliance teams query the subscription-scoped list endpoint to inventory every accepted marketplace agreement and the plan, publisher, and timestamp behind it. The output drives quarterly reviews of which third-party publishers have legal commitments tied to the subscription, supporting renewal and cancellation decisions.

Call GET /subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements and emit a CSV of publisher, offer, plan, and acceptance timestamp.

Cancel an obsolete agreement

When a marketplace plan is no longer in use and the team wants to fully decommission its footprint, the agent calls the cancel endpoint to revoke the previously signed agreement. Existing deployments are unaffected, but new deployments of that plan in the subscription will need a fresh agreement before they can proceed.

POST /subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}/cancel and verify with the matching GET that the agreement is no longer accepted.

Agent-driven deployment unblock

Through Jentic, an AI agent can intercept a marketplace deployment failure caused by a missing agreement, automatically retrieve and sign the agreement, and retry the deployment. The agent searches Jentic for 'sign azure marketplace agreement', loads the operation, and executes the sign call, all while Jentic injects the Azure AD bearer token at execution time.

Use Jentic search 'sign azure marketplace plan agreement', load MarketplaceAgreements_Sign, supply publisher, offer, and plan IDs, and execute.

Key Endpoints

7 endpoints — jentic publishes the only available openapi specification for marketplaceordering.

METHOD

PATH

DESCRIPTION

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}

Get the current agreement for a plan

POST

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}/sign

Sign a marketplace agreement

POST

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}/cancel

Cancel a marketplace agreement

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements

List all signed agreements in a subscription

PUT

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/offerTypes/{offerType}/publishers/{publisherId}/offers/{offerId}/plans/{planId}/agreements/current

Create or update an agreement record

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}

Get the current agreement for a plan

POST

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}/sign

Sign a marketplace agreement

POST

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}/cancel

Cancel a marketplace agreement

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements

List all signed agreements in a subscription

PUT

/subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/offerTypes/{offerType}/publishers/{publisherId}/offers/{offerId}/plans/{planId}/agreements/current

Create or update an agreement record

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring MarketplaceOrdering.Agreements by hand means implementing Azure AD OAuth 2.0, minting a bearer token scoped to Azure Resource Manager on management.azure.com, and handling the unusual offerType and sign or cancel POST paths plus ARM throttling yourself. Through Jentic you install once, import MarketplaceOrdering.Agreements from the API Directory, store the Azure AD credential once, and your agent calls it.

Permission scoping

Permission scoping

The API puts the subscription, publisher, offer, and plan in the URL path, so a rule can pin your agent to reading and signing agreements for a specific plan and nothing else. You choose the operations it may call, so destructive ones like cancelling an agreement are not included unless you add them.

Credential management

Credential isolation

Your Azure AD credential is stored once, encrypted, by your own Jentic One instance and exchanged for a short-lived ARM-scoped bearer token at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'sign an Azure marketplace plan agreement' or 'list signed marketplace agreements', and Jentic returns the matching MarketplaceAgreements operation with its input schema so the agent supplies the publisher, offer, and plan and executes.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Marketplace RP Service

→

Curate which marketplace offers are admitted to a tenant private store.

Use Marketplace RP Service to control catalog visibility; use MarketplaceOrdering.Agreements to accept the legal terms before deployment.

Complementary

Compute Management Client

→

Provision Azure VMs from marketplace images once their agreements are signed.

Pair with MarketplaceOrdering.Agreements when deploying marketplace VM images that fail without a signed agreement.

Complementary

Subscription Client

→

Enumerate subscriptions that need marketplace agreements signed.

Use Subscription Client first to identify the subscription scope before signing agreements within it.

Alternative

Policy Client

→

Govern marketplace deployments via Azure Policy rather than agreement state.

Pick Policy when the goal is to block deployments by publisher; use this API when the goal is to accept terms so a deployment can succeed.

FAQs

Specific to using MarketplaceOrdering.Agreements API through Jentic.

Why is there no official OpenAPI spec for MarketplaceOrdering.Agreements?

Microsoft Azure does not publish a standalone OpenAPI specification for the marketplace ordering agreements API. Jentic generates and maintains this spec so that AI agents and developers can call MarketplaceOrdering.Agreements via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Marketplace Ordering API use?

The API uses Azure Active Directory OAuth 2.0 via the azure_auth scheme on https://management.azure.com/. Through Jentic, your Azure AD application credentials are stored encrypted in your Jentic One instance and exchanged for a short-lived bearer token at execution time.

Can I sign a marketplace agreement programmatically?

Yes. Call POST /subscriptions/{subscriptionId}/providers/Microsoft.MarketplaceOrdering/agreements/{publisherId}/offers/{offerId}/plans/{planId}/sign. The response confirms acceptance and the same agreement then satisfies subsequent deployments of that plan in the subscription.

What are the rate limits for the Marketplace Ordering API?

The endpoints inherit the standard Azure Resource Manager throttle quotas, surfaced through x-ms-ratelimit-remaining-* response headers. Bulk sign or cancel calls should respect those headers and back off when remaining quota approaches zero.

How do I check if a marketplace agreement is signed through Jentic?

Search Jentic for 'get azure marketplace agreement', load MarketplaceAgreements_GetAgreement, supply publisher, offer, and plan IDs, and execute. The response includes an accepted boolean and signedDate that the agent can branch on.

Does cancelling an agreement affect existing deployments?

No. POST .../cancel revokes the agreement so new deployments of that plan require a fresh signature, but resources already provisioned under the previously signed agreement keep running. Decommission those resources separately through their resource provider APIs.

Is the Marketplace Ordering API free?

The control-plane endpoints themselves do not incur charges. Marketplace plans deployed under signed agreements bill against the publisher's terms in addition to standard Azure resource consumption charges.

Can I limit what my agent is allowed to do with the Microsoft Azure Marketplace Ordering API?

Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use, so you can grant it just the read (get and list agreements) and sign operations while leaving out cancelling an agreement entirely. Since the subscription, publisher, offer, and plan all sit in the request path, a rule can pin the agent to a specific plan and refuse anything outside it. Your Azure AD credential stays with your instance and is exchanged for a short-lived token only at execution time, never entering the agent's prompt or logs.

GET STARTED

Start building with MarketplaceOrdering.Agreements API

Explore with Jentic One
View OpenAPI Document