Tackle.io Private Offers API

AWS private-offer lifecycle (create, read, update, cancel, push to marketplace).

Operations 11

GET /private-offers List Private Offers #
POST /private-offers Create Private Offer #
GET /private-offers/{id} Get Private Offer #
PUT /private-offers/{id} Update Private Offer #
DELETE /private-offers/{id} Delete Private Offer #
POST /private-offers/{id}/cancel Cancel Private Offer #
POST /private-offers/{id}/marketplace-create Push Private Offer to AWS Marketplace #
POST /api/private-offers/{id} Update a Microsoft offer #
GET /api/private-offers/{id} Get an offer #
POST /api/private-offers Create or import a Microsoft offer #
GET /api/private-offers List offers #

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/tackleio-private-offers-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 email required.

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

OpenAPI Specification

tackleio-private-offers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tackle Public Contracts Authentication Private Offers API
  description: "Customer-facing read API for cloud marketplace contracts that Tackle has\ningested for your Tackle account.\n\nThe response shape is a stable projection of the underlying\ncontract document. It is intended to be safe to consume long-term: fields\nwill be added over time, but documented fields will not be removed without\ndeprecation notice.\n\n## Authentication\n\nEvery request must include a valid Tackle JWT in the `Authorization`\nheader (`Authorization: Bearer <token>`). Machine-to-machine (MTM) tokens\nissued for your Tackle account are accepted. The token scopes every\nresponse to the account it represents.\n\n## Pagination\n\n`GET /api/contracts` is the only paginated endpoint. Pagination uses an\nopaque `cursor` query parameter:\n\n1. The first request omits `cursor`.\n2. If more pages exist, the response includes a `next` field. Pass that\n   value verbatim back as `cursor` on the next request.\n3. The last page omits `next`.\n\nCursors are opaque tokens. Do not parse, modify, or persist them across\nschema changes — request a fresh page from the start instead.\n"
  version: 1.0.0
servers:
- url: https://contracts.tackle.io
  description: Production
security:
- tackleJwt: []
tags:
- name: Private Offers
  description: AWS private-offer lifecycle (create, read, update, cancel, push to marketplace).
paths:
  /private-offers:
    get:
      summary: List Private Offers
      description: 'Returns a paginated list of private offers visible to the authenticated

        principal. Results may be filtered by status, marketplace, offer type,

        product reference, salesforce opportunity ID, and creation date.


        **Required RBAC permission:** `offers:ListOffers`

        '
      operationId: listPrivateOffers
      tags:
      - Private Offers
      security:
      - TackleJwt: []
      parameters:
      - name: status
        in: query
        required: false
        description: Filter by offer status (e.g. `draft`, `created`, `accepted`, `cancelled`).
        schema:
          type: string
      - name: offer_ref
        in: query
        required: false
        description: Filter by marketplace offer reference (e.g. AWS `offer-*` ID).
        schema:
          type: string
      - name: type
        in: query
        required: false
        description: Filter by offer type.
        schema:
          type: string
          enum:
          - direct
          - partner_resale
      - name: product_ref
        in: query
        required: false
        description: Filter by Tackle product ID.
        schema:
          type: string
      - name: created_at
        in: query
        required: false
        description: Filter to offers created on the given `YYYY-MM-DD` date.
        schema:
          type: string
          format: date
      - name: created_at_gt
        in: query
        required: false
        description: Filter to offers created strictly after the given date.
        schema:
          type: string
          format: date
      - name: created_at_lt
        in: query
        required: false
        description: Filter to offers created strictly before the given date.
        schema:
          type: string
          format: date
      - name: salesforce_opportunity_id
        in: query
        required: false
        description: Filter by associated Salesforce Opportunity ID.
        schema:
          type: string
      - name: sort
        in: query
        required: false
        description: 'Sort expression. Prefix a field name with `-` for descending order

          (e.g. `-created_at`).

          '
        schema:
          type: string
      - name: offset
        in: query
        required: false
        description: Zero-based offset for pagination.
        schema:
          type: integer
          minimum: 0
          default: 0
      - name: limit
        in: query
        required: false
        description: Page size (1–100).
        schema:
          type: integer
          minimum: 1
          maximum: 100
          default: 100
      responses:
        '200':
          description: Paginated list of private offers.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivateOfferList'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '500':
          $ref: '#/components/responses/InternalServerError'
    post:
      summary: Create Private Offer
      description: 'Creates a draft private offer. Set `create_in_marketplace: true` in the

        request body to also push the offer to AWS Marketplace in the same

        call; otherwise the offer is saved as a Tackle draft that can be

        pushed later via `POST /private-offers/{id}/marketplace-create`.


        Set `dry_run: true` to validate the payload without persisting the

        offer; a successful dry run returns `200 OK` instead of `201 Created`.


        **Required RBAC permission:** `offers:CreateDraftOffer`

        '
      operationId: createPrivateOffer
      tags:
      - Private Offers
      security:
      - TackleJwt: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePrivateOfferRequest'
      responses:
        '200':
          description: Dry-run validation succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatePrivateOfferResponse'
        '201':
          description: Private offer created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatePrivateOfferResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '500':
          $ref: '#/components/responses/InternalServerError'
  /private-offers/{id}:
    parameters:
    - $ref: '#/components/parameters/PrivateOfferId'
    get:
      summary: Get Private Offer
      description: 'Returns a single private offer by its Tackle ID.


        **Required RBAC permission:** `offers:GetOffer`

        '
      operationId: getPrivateOffer
      tags:
      - Private Offers
      security:
      - TackleJwt: []
      responses:
        '200':
          description: Private offer.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivateOffer'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      summary: Update Private Offer
      description: 'Updates an existing draft private offer. The body has the same shape as

        `POST /private-offers` (`CreatePrivateOfferRequest`).


        **Required RBAC permission:** `offers:CreateDraftOffer` (the create

        permission also gates updates -- updating a draft is treated as the

        same authorization concept as creating one).

        '
      operationId: updatePrivateOffer
      tags:
      - Private Offers
      security:
      - TackleJwt: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePrivateOfferRequest'
      responses:
        '200':
          description: Updated private offer.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatePrivateOfferResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      summary: Delete Private Offer
      description: 'Deletes a draft private offer.


        **Required RBAC permission:** `offers:UpdateOffer` (the update

        permission also gates deletes -- "removing a draft" is treated as a

        kind of update).

        '
      operationId: deletePrivateOffer
      tags:
      - Private Offers
      security:
      - TackleJwt: []
      responses:
        '204':
          description: Private offer deleted.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
  /private-offers/{id}/cancel:
    parameters:
    - $ref: '#/components/parameters/PrivateOfferId'
    post:
      summary: Cancel Private Offer
      description: 'Cancels a private offer that has been pushed to AWS Marketplace but

        not yet accepted by the buyer. The cancellation is performed

        asynchronously; the response indicates that the request has been

        accepted, not that the cancellation is complete. Track completion via

        the offer''s `status` and `activities` fields, or via webhooks.


        **Required RBAC permission:** `offers:CancelOffer`

        '
      operationId: cancelPrivateOffer
      tags:
      - Private Offers
      security:
      - TackleJwt: []
      responses:
        '200':
          description: Cancellation request accepted.
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          description: Offer is not in a state that can be cancelled.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /private-offers/{id}/marketplace-create:
    parameters:
    - $ref: '#/components/parameters/PrivateOfferId'
    post:
      summary: Push Private Offer to AWS Marketplace
      description: 'Promotes a Tackle draft private offer (one created with

        `create_in_marketplace: false`) into AWS Marketplace. The push is

        asynchronous; this endpoint returns immediately once the request has

        been queued.


        **Required RBAC permission:** `offers:CreateOfferOnMarketplace`

        '
      operationId: marketplaceCreatePrivateOffer
      tags:
      - Private Offers
      security:
      - TackleJwt: []
      requestBody:
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarketplaceCreatePrivateOfferRequest'
      responses:
        '200':
          description: Dry-run validation succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceCreatePrivateOfferRequest'
        '201':
          description: Marketplace creation request accepted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceCreatePrivateOfferRequest'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          description: Offer is not eligible for marketplace creation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /api/private-offers/{id}:
    post:
      tags:
      - Private Offers
      summary: Update a Microsoft offer
      description: 'Updates an existing Microsoft private offer. If `status` is

        `submit_to_cloud`, the handler merges EULA documents when present,

        validates the request, and stores the Microsoft submission payload.


        Required RBAC action: `offers:UpdateOffer`. Submitting to Microsoft also

        requires `offers:CreateOfferOnMarketplace`.

        '
      operationId: updatePrivateOffer
      security:
      - bearerAuth: []
      parameters:
      - $ref: '#/components/parameters/OfferId'
      - $ref: '#/components/parameters/TackleOperationId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOffer'
            examples:
              updateDraftOffer:
                summary: Update and keep the offer in Tackle only
                description: 'Use `draft_status` to save the update in Tackle without preparing

                  or submitting a Microsoft marketplace payload.

                  '
                value:
                  status: draft_status
                  name: Updated draft offer
                  description: Updated draft description
              updateCloudOffer:
                summary: Update and submit the offer to Microsoft
                description: 'Use `submit_to_cloud` to validate the offer, merge EULA documents

                  when present, and prepare the Microsoft marketplace payload. This

                  also requires the `offers:CreateOfferOnMarketplace` RBAC action.

                  '
                value:
                  status: submit_to_cloud
                  name: Updated cloud offer
                  description: Updated cloud offer description
                  eula:
                    type: custom
                    document_urns:
                    - document-urn-1
      responses:
        '200':
          description: Offer updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivateOffer_2'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/InternalServerError_2'
    get:
      tags:
      - Private Offers
      summary: Get an offer
      description: 'Returns one private offer by Tackle offer ID after checking that the

        caller can access the offer''s vendor.


        Required RBAC action: `offers:GetOffer`.

        '
      operationId: getPrivateOffer
      security:
      - bearerAuth: []
      parameters:
      - $ref: '#/components/parameters/OfferId'
      - $ref: '#/components/parameters/TackleOperationId'
      responses:
        '200':
          description: Offer found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivateOffer_2'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/InternalServerError_2'
  /api/private-offers:
    post:
      tags:
      - Private Offers
      summary: Create or import a Microsoft offer
      description: 'Creates a new Microsoft private offer from a full offer payload, or

        imports an existing live Microsoft private offer when the body contains

        `microsoftOfferId` and `buyer_company_name`.


        For full create payloads, if `status` is `submit_to_cloud`, the handler

        validates and transforms the request for Microsoft submission before

        saving the offer. For import payloads, the vendor context is derived

        from the authenticated principal; sandbox vendors use their production

        parent vendor''s Microsoft credentials.


        Required RBAC action: `offers:CreateDraftOffer`. Submitting to Microsoft

        also requires `offers:CreateOfferOnMarketplace`.

        '
      operationId: createPrivateOffer
      security:
      - bearerAuth: []
      parameters:
      - $ref: '#/components/parameters/TackleOperationId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/CreateOffer'
              - $ref: '#/components/schemas/ImportMicrosoftOfferRequest'
            examples:
              createDraftOffer:
                summary: Create a Tackle-only draft
                description: 'Use `draft_status` to save the offer in Tackle without preparing

                  or submitting a Microsoft marketplace payload.

                  '
                value:
                  offer_type: direct
                  vendor_id: vendor-123
                  status: draft_status
                  vendor_name: Example Vendor
                  product_id: product-123
                  product_name: Example Product
                  buyer_details:
                    company_name: Example Buyer
                    billing_account_id: billing-account-123
                  eula:
                    type: standard
                    document_urns: []
                  pricing:
                    plan_name: Example Plan
                    description: Annual plan
                    contract_duration:
                      type: month
                      frequency: 12
                    payment_model: OneTime
                    payment_installments:
                      price_per_payment_in_usd: 1200
                    pricing_type: flat_rate
              createCloudOffer:
                summary: Create and submit to Microsoft
                description: 'Use `submit_to_cloud` to validate the offer and prepare the

                  Microsoft marketplace payload. This also requires the

                  `offers:CreateOfferOnMarketplace` RBAC action.

                  '
                value:
                  offer_type: direct
                  vendor_id: vendor-123
                  status: submit_to_cloud
                  vendor_name: Example Vendor
                  product_id: product-123
                  product_name: Example Product
                  name: Example Microsoft Offer
                  preparer_email: seller@example.com
                  start_on: acceptance
                  end_date: '2027-04-30'
                  accept_by_date: '2026-05-31'
                  buyer_details:
                    company_name: Example Buyer
                    billing_account_id: billing-account-123
                    buyers:
                    - full_name: Buyer User
                      email_address: buyer@example.com
                      title: Procurement
                  eula:
                    type: custom
                    document_urns:
                    - document-urn-1
                  pricing:
                    plan_name: Example Plan
                    description: Annual plan
                    contract_duration:
                      type: month
                      frequency: 12
                    payment_model: OneTime
                    payment_installments:
                      price_per_payment_in_usd: 1200
                    pricing_type: flat_rate
              importMicrosoftOffer:
                summary: Import an existing Microsoft offer
                description: 'Use `microsoftOfferId` with `buyer_company_name` to import an

                  existing live Microsoft private offer into Tackle. Optionally

                  include `salesforce_opportunity_id` to associate the imported

                  offer with a Salesforce opportunity. The Microsoft offer must

                  be supported by Tackle: live state, a single product listing

                  and plan, a single buyer, and supported USD pricing.

                  '
                value:
                  microsoftOfferId: ms-offer-123
                  buyer_company_name: Example Buyer
                  salesforce_opportunity_id: 6000000000001
      responses:
        '200':
          description: Offer created or imported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivateOffer_2'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '500':
          $ref: '#/components/responses/InternalServerError_2'
    get:
      tags:
      - Private Offers
      summary: List offers
      description: 'Finds the authenticated seller''s offers, optionally filtered by Microsoft

        offer reference or Microsoft plan reference. Vendor scope is derived

        from the bearer token; no vendor identifier is accepted from the caller.


        Required RBAC action: `offers:ListOffers`.

        '
      operationId: listPrivateOffers
      security:
      - bearerAuth: []
      parameters:
      - $ref: '#/components/parameters/OfferRef'
      - $ref: '#/components/parameters/PlanRef'
      - $ref: '#/components/parameters/TackleOperationId'
      responses:
        '200':
          description: Offers matching the search
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PrivateOffer_2'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '500':
          $ref: '#/components/responses/InternalServerError_2'
components:
  schemas:
    PrivateOfferList:
      type: object
      description: Paginated list of private offers.
      properties:
        private_offers:
          type: array
          items:
            $ref: '#/components/schemas/PrivateOffer'
        offset:
          type: integer
          description: Zero-based offset of the first item in this page.
        limit:
          type: integer
          description: Maximum number of items returned per page.
        total:
          type: integer
          format: int64
          description: Total number of offers matching the query.
      required:
      - private_offers
      - offset
      - limit
      - total
    PrivateOfferActivity:
      type: object
      properties:
        slug:
          type:
          - string
          - 'null'
          example: created-draft-offer
        user_id:
          type:
          - string
          - 'null'
        created_at:
          type: string
          format: date-time
        metadata:
          type:
          - object
          - 'null'
          additionalProperties: true
        user:
          oneOf:
          - $ref: '#/components/schemas/PrivateOfferActivityUser'
          - type: 'null'
    UsageDimension:
      type: object
      properties:
        description:
          type:
          - string
          - 'null'
          description: Human-friendly name of the usage dimension.
        sku:
          type:
          - string
          - 'null'
          description: API identifier of the usage dimension in AWS Marketplace.
        price:
          type:
          - string
          - 'null'
          description: Price per unit.
        aws_discount_percentage:
          type:
          - string
          - 'null'
          description: Display-only discount percentage.
    UpdateContractDuration:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        frequency:
          type:
          - integer
          - 'null'
    Dimension:
      type: object
      properties:
        enabled:
          type: boolean
        id:
          type: string
        unit_of_measure:
          type: string
        price_per_unit_in_usd:
          type: number
          format: double
        included_quantities:
          type: array
          items:
            $ref: '#/components/schemas/DimensionQuantity'
    PositiveTargeting:
      type: object
      description: Positive targeting constraints (currently country allow-lists).
      properties:
        country_codes:
          type: array
          description: ISO 3166-1 alpha-2 country codes the offer is restricted to.
          items:
            type: string
            pattern: ^[A-Z]{2}$
    ExtraDataUser:
      type: object
      properties:
        email:
          type: string
          format: email
      required:
      - email
    PaymentInstallment:
      type: object
      properties:
        price_per_payment_in_usd:
          type: number
          format: double
    ScheduledPayment:
      type: object
      properties:
        invoice_date:
          type:
          - string
          - 'null'
          format: date
          description: Date the buyer should be invoiced for this scheduled payment.
        invoice_amount:
          type:
          - string
          - 'null'
          description: Amount the buyer should be invoiced.
    OfferPricing:
      type: object
      properties:
        plan_ref:
          type: string
          description: Microsoft plan ID.
        plan_name:
          type: string
        description:
          type: string
        contract_duration:
          $ref: '#/components/schemas/ContractDuration'
        payment_model:
          $ref: '#/components/schemas/PaymentModel'
        payment_installments:
          oneOf:
          - $ref: '#/components/schemas/PaymentInstallment'
          - type: 'null'
        payment_schedule:
          oneOf:
          - $ref: '#/components/schemas/PaymentSchedule'
          - type: 'null'
        pricing_type:
          oneOf:
          - $ref: '#/components/schemas/PricingType'
          - type: 'null'
        user_limits:
          oneOf:
          - $ref: '#/components/schemas/UserLimits'
          - type: 'null'
        dimensions:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/Dimension'
    ProductType:
      type: string
      enum:
      - saas
      - ami
      - professional_services
    ContractDuration:
      type: object
      properties:
        type:
          type: string
          example: month
        frequency:
          type: integer
          example: 12
    PaymentSchedule:
      type: object
      properties:
        initial_charge:
          $ref: '#/components/schemas/InitialCharge'
        payment_schedule:
          type: array
          items:
            $ref: '#/components/schemas/ScheduleDetail'
    PrivateOffer:
      type: object
      description: 'Represents a private offer for any cloud marketplace and product type.

        Field shapes are backward-compatible with the `private_offer_metadata`

        object documented in the

        [Tackle webhook reference](https://developers.tackle.io/reference/sample-private-offer-payloads).

        '
      properties:
        po_id:
          type: string
          readOnly: true
          description: Tackle-issued unique offer ID.
          example: po_01HXXXXXXXXXXXXXXXXXXXXXXX
        offerid:
          type:
          - string
          - 'null'
          readOnly: true
          description: 'Marketplace-issued unique offer ID. For AWS partner offers this is

            initially the Resale Authorization ID (`resaleauthz-*`); once the

            CPPO is extended it is replaced with the CPPO offer ID

            (`offer-*`).

            '
        vendorid:
          type: string
          readOnly: true
          description: Tackle-issued vendor (ISV) ID that owns the offer.
        offer_name:
          type:
          - string
          - 'null'
          description: The name of the offer as it will appear in the marketplace.
        offer_description:
          type:
          - string
          - 'null'
          description: A human-friendly description of the offer.
        offer_type:
          type: string
          enum:
          - direct
          - partner_resale
          description: '`direct` is an ISV-to-buyer offer. `partner_resale` is a Resale

            Authorization + CPPO offer.

            '
        marketplace:
          type: string
          enum:
          - aws
          description: Always `aws` for offers returned by this API.
        productid:
          type:
          - string
          - 'null'
          description: The marketplace product code (AWS Product Code).
        offer_product_type:
          type:
          - string
          - 'null'
          enum:
          - saas
          - ami
          default: saas
          description: Determines pricing and contract terms for the offer.
        buyer_billing_account_ref:
          type: string
          description: The buyer's 12-digit AWS account number.
          example: '123456789012'
        positive_targeting:
          allOf:
          - $ref: '#/components/schemas/PositiveTargeting'
          description: Positive targeting (e.g. country allow-list). May be null.
        buyer_company_name:
          type:
          - string
          - 'null'
        source_offer_id:
          type:
          - string
          - 'null'
          description: For amendment offers, the marketplace ID of the offer in the existing agreement.
        salesforce_id:
          type:
          - string
          - 'null'
          description: ID of the corresponding Salesforce Opportunity.
        offer_expiration_at:
          type:
          - string
          - 'null'
          format: date
          description: YYYY-MM-DD date until which the offer is purchasable in the marketplace.
        renewal:
          type: boolean
          default: false
          description: 'Indicates that this offer is a renewal of an existing agreement

            with the same buyer for the same product.

            '
        aws_renewal_moving_to_marketplace:
          type: boolean
          default: false
          description: 'For renewal offers where the existing agreement was originally

            outside AWS Marketplace, indicates that the renewal is moving the

            agreement into AWS Marketplace.

            '
        buyers:
          type: array
          description: Recipients of purchase-instructions notifications and activity logs.
          items:
            $ref: '#/components/schemas/Buyer'
        pricing:
          $ref: '#/components/schemas/Pricing'
        eula:
          $ref: '#/components/schemas/EULA'
        offer_metadata:
          type: object
          additionalProperties: true
          description: Custom internal metadata associated with the offer.
        pre_registration_details:
          type: object
          additionalProperties: true
          description: 'Custom public metadata pre-filled for the buyer when registering

            their order after offer acceptance.

            '
        extra_data:
          $ref: '#/components/schemas/ExtraData'
        enable_zero_dollar_prices:
          type: boolean
          description: Whether the offer allows zero-dollar prices on its dimensions.
        stage:
          type: string
          readOnly: true
          description: Lifecycle stage of the offer.
        status:
          type: string
          readOnly: true
          description: Most recent activity status of the offer.
        created_at:
          type: string
          format: date-time
          readOnly: true
        last_modified_at:
          type: string
          format: date-time
          readOnly: true
        accepted_at:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        archived_at:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        cancelled_at:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        opened_instructions_at:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        sent_at:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        viewed_offer_at:
          type:
          - string
          - 'nul

# --- truncated at 32 KB (71 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/tackleio/refs/heads/main/openapi/tackleio-private-offers-api-openapi.yml