Propel Software (Propel PLM) ManufacturerItem API

The ManufacturerItem API from Propel Software (Propel PLM) — 1 operation(s) for manufactureritem.

Operations 1

POST /ManufacturerItem/{ItemId} Create new Manufacturer Item(s)

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/propelplm-manufactureritem-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

propelplm-manufactureritem-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Propel Manufacturer Item API
  description: Propel Manufacturer Item API
  license:
    name: MIT
    url: https://spdx.org/licenses/MIT
  contact:
    name: Propel Support
    url: https://propel.force.com/helpcenter/s/
    email: support@propelsoftware.com
servers:
- url: https://{endpoint}/services/apexrest/{namespace}
  description: Propel API Endpoint Base URL
  variables:
    endpoint:
      description: This is the Salesforce instance url. It is the URL when using Salesforce Classic, i.e. propel.my.salesforce.com
    namespace:
      default: PDLM
      description: This value should default to PDLM for managed package environments. For other environments, provide the namespace to your dev org.
security:
- oAuth2Implicit:
  - api
tags:
- name: ManufacturerItem
paths:
  /ManufacturerItem/{ItemId}:
    parameters:
    - name: ItemId
      description: The Salesforce record id of the Item
      in: path
      required: true
      schema:
        $ref: '#/components/schemas/ItemId'
    post:
      summary: Create new Manufacturer Item(s)
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MfrList'
      responses:
        '200':
          description: Successfully created new Manufacturer Item(s)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NewOrExistingManufacturerItem'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - ManufacturerItem
components:
  schemas:
    Error:
      description: A human readable error message or null/blank
      type: string
      example: Invalid manufacturer/distributor value(s). No items or parts created.
    ItemId:
      description: The Salesforce record id of the Item
      type: string
    MfrList:
      description: Model containing AML list object
      type: object
      required:
      - addAML
      properties:
        addAML:
          type: array
          items:
            $ref: '#/components/schemas/ManufacturerPart'
    NewOrExistingManufacturerItem:
      description: Model containing newly created Manufacturer Item details
      type: object
      required:
      - attributes
      - Name
      - Id
      properties:
        attributes:
          type: object
          properties:
            type:
              type: string
              example: PDLM__Manufacturer_Item__c
            url:
              type: string
        Name:
          type: string
          example: MPN-12345
        PDLM__Manufacturer__c:
          description: The Salesforce record id of the Manufacturer account
          type: string
        PDLM__Distributor__c:
          description: The Salesforce record id of the Distributor account
          type: string
        Id:
          description: The Salesforce record id of the newly created Manufacturer Item
          type: string
    ManufacturerPart:
      description: Model containing Manufacturer Part mappings
      type: object
      required:
      - manufacturer
      - mpn
      properties:
        manufacturer:
          type: string
          example: United Gas & Oil
        mpn:
          type: string
        distributor:
          type: string
          example: GenePoint
  securitySchemes:
    oAuth2Implicit:
      type: oauth2
      description: This API uses OAuth 2 with the implicit grant flow.
      flows:
        implicit:
          authorizationUrl: '{{url}}{{site}}/services/oauth2/authorize'
          scopes:
            api: Enable read and write access to Propel objects