Propel Software (Propel PLM) change API

The change API from Propel Software (Propel PLM) — 3 operation(s) for change.

Operations 4

PUT /change/{changeId} Update Change Order #
GET /change/{changeId} Change (Release Package) #
POST /change Create Change #
GET /change/{itemNumber} Get Change (Release Package) #

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-change-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-change-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Propelplm Change API
  version: '1.0'
  description: 'Operations tagged change across 3 of this provider''s published API definitions: propelplm-change-put-openapi.yml, propelplm-core-openapi.yml, propelplm-release-package-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{endpoint}/services/apexrest/{namespace}/v2
  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 production environments. For dev environments, provide the namespace to your dev org.
- url: https://{orgURL}.salesforce.com/services/apexrest/PDLM/api
  description: Salesforce Apex REST endpoint. orgURL is your org subdomain (e.g. NA85, EU142, or <custom>.my).
  variables:
    orgURL:
      default: NA85
      description: Salesforce org subdomain / My Domain
- url: https://{endpoint}/services/apexrest/{namespace}/v3
  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 production environments. For dev environments, provide the namespace to your dev org.
tags:
- name: change
paths:
  /change/{changeId}:
    put:
      summary: Update Change Order
      description: Update existing change order to add/remove a list of affected items and update change detail fields
      operationId: changePut
      tags:
      - change
      parameters:
      - name: changeId
        in: path
        description: Change Id or Change Number
        required: true
        schema:
          type: string
          format: string
      - name: forceAdd
        in: query
        description: Force add any affected items that are currently on an existing change, by removing them from the previous change prior to adding.
        required: false
        schema:
          type: boolean
          format: boolean
          default: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChangeBody'
      responses:
        '200':
          description: Updated change order
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Change'
    get:
      summary: Change (Release Package)
      description: Get a change order's details along with related information such as Affected Items, Bills of Materials, Approved Manufacturers Lists, and Attachments. This endpoint is useful for integrations with downstream systems such as ERP.
      operationId: getChangeOrder
      tags:
      - change
      parameters:
      - name: changeId
        in: path
        description: Change Id Or Change Number
        required: true
        schema:
          type: string
          format: string
      - name: affectedItems
        in: query
        description: Include affected items including details fields and costing information.
        required: false
        schema:
          type: boolean
          format: boolean
          default: false
      - name: bom
        in: query
        description: Include the BOM for each affected item in the payload, only includes the first level. affectedItems parameter must be true.
        required: false
        schema:
          type: boolean
          format: boolean
          default: false
      - name: amls
        in: query
        description: Include AMLs for each affected item in the payload. affectedItems parameter must be true.
        required: false
        schema:
          type: boolean
          format: boolean
          default: false
      - name: attachments
        in: query
        description: Include information about Change attachments. If affectedItems is true, Item attachments will also be included.
        required: false
        schema:
          type: boolean
          format: boolean
          default: false
      - name: useXMLexportFieldset
        in: query
        description: Use the XML Export field set to determine which fields will be returned in the response. Default is false to return all fields.
        required: false
        schema:
          type: boolean
          format: boolean
          default: false
      - name: limit
        in: query
        description: Used to limit the number of affected items included in the response
        required: false
        schema:
          type: integer
          format: integer
          default: 0
      - name: page
        in: query
        description: Page number to provide if number of affected items exceeds limit provided or Propel limit of 1000
        required: false
        schema:
          type: integer
          format: integer
          default: 0
      responses:
        '200':
          description: Change Order details fields. Optionally includes Affected Item, BOM, and AML data for downstream system integrations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReleasePackage'
        '404':
          description: Change Order not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://{endpoint}/services/apexrest/{namespace}/v2
      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 production environments. For dev environments, provide the namespace to your dev org.
  /change:
    post:
      operationId: createChange
      summary: Create Change
      tags:
      - change
      security:
      - salesforceOAuth: []
      requestBody:
        required: true
        content:
          application/json:
            example:
              categoryName: ECO
              itemNames:
              - 100-00030
      responses:
        '200':
          description: Success
        '400':
          description: Bad request — invalid payload or field
        '401':
          description: Unauthorized — missing or invalid OAuth bearer token
        '404':
          description: Not found — the requested record does not exist
        '500':
          description: Salesforce Apex REST internal error
    servers:
    - url: https://{orgURL}.salesforce.com/services/apexrest/PDLM/api
      description: Salesforce Apex REST endpoint. orgURL is your org subdomain (e.g. NA85, EU142, or <custom>.my).
      variables:
        orgURL:
          default: NA85
          description: Salesforce org subdomain / My Domain
  /change/{itemNumber}:
    get:
      operationId: getChangeOrder
      summary: Get Change (Release Package)
      tags:
      - change
      security:
      - salesforceOAuth: []
      parameters:
      - name: itemNumber
        in: path
        required: true
        schema:
          type: string
        description: Item Number or record Id
      responses:
        '200':
          description: Success
        '400':
          description: Bad request — invalid payload or field
        '401':
          description: Unauthorized — missing or invalid OAuth bearer token
        '404':
          description: Not found — the requested record does not exist
        '500':
          description: Salesforce Apex REST internal error
    servers:
    - url: https://{orgURL}.salesforce.com/services/apexrest/PDLM/api
      description: Salesforce Apex REST endpoint. orgURL is your org subdomain (e.g. NA85, EU142, or <custom>.my).
      variables:
        orgURL:
          default: NA85
          description: Salesforce org subdomain / My Domain
components:
  schemas:
    ChangeBody:
      type: object
      properties:
        addAffectedItems:
          type: array
          items:
            type: string
            format: string
        removeAffectedItems:
          type: array
          items:
            type: string
            format: string
        details:
          type: object
          properties:
            PDLM__Description__c:
              type: string
              format: string
            Custom_Field__c:
              type: string
              format: string
    AffectedItem:
      type: object
      required:
      - id
      - name
      properties:
        Id:
          type: string
          description: Id of the associated Item Revision record
        Name:
          type: string
          description: Name of the item record associated to the affected item
        Custom_Field__c:
          type: string
          description: Placeholder for any custom fields an org may have on the Affected_Item__c object.
    Change:
      type: object
      required:
      - Id
      - Name
      properties:
        Id:
          type: integer
          format: int64
        Name:
          type: string
        Custom_Field__c:
          type: string
          description: Placeholder for any custom fields an org may have on the Change__c object.
        affectedItems:
          type: array
          items:
            $ref: '#/components/schemas/AffectedItem'
    Error:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
    AffectedItem_2:
      type: object
      required:
      - id
      - name
      properties:
        Id:
          type: string
          description: Id of the associated Item Revision record
        Name:
          type: string
          description: Name of the item record associated to the affected item
        Custom_Field__c:
          type: string
          description: Placeholder for any custom fields an org may have on the Change__c object.
        bom:
          type: array
          items:
            $ref: '#/components/schemas/Assembly'
        aml:
          type: array
          items:
            $ref: '#/components/schemas/Manufacturer'
        attachments:
          type: array
          items:
            $ref: '#/components/schemas/Document'
    Manufacturer:
      type: object
      description: Manufacturer Part representing AML rows
      required:
      - id
      properties:
        Id:
          type: string
          description: Id of the Manufacturer Part record
        Name:
          type: string
          description: Name of the Manufacturer Part record
        PDLM__Manufacturer__c:
          type: string
          description: Id of the Account record representing the manufacturer
        PDLM__Manufacturer_Name__c:
          type: string
        PDLM__Primary_Key__c:
          type: string
          description: Primary key unique identifier for the Manufacturer Part record
        Custom_Field__c:
          type: string
          description: Placeholder for any custom fields an org may have on the Manufacturer_Part__c object.
        attachments:
          type: array
          items:
            $ref: '#/components/schemas/Attachment'
    Attachment:
      type: object
      description: Attachments added to change, quality or AML records
      required:
      - id
      properties:
        Id:
          type: string
          description: The content version ID associated with the file. This contains the file's latest base64 encoded content.
        ContentDocumentId:
          type: string
          description: Id of the Attachment (ContentDocument record)
        ContentSize:
          type: number
          description: Size of the file
        IsLatest:
          type: boolean
          description: Size of the file
        Title:
          type: string
          description: Name of the file
        VersionNumber:
          type: number
          description: The version number associated with the file
    Assembly:
      type: object
      description: Assembly row represented in a BOM.
      required:
      - id
      - name
      - level
      properties:
        Id:
          type: string
          description: Id of the child Item record
        PDLM__Item_Number__c:
          type: string
          description: Name of the child Item record
        PDLM__Level__c:
          type: string
          description: BOM level of assembly row. In the format of 1, 1.1, 2, 2.1, 2.2, 2.2.1
        Custom_Field__c:
          type: string
          description: Placeholder for any custom fields an org may have on the Assembly__c object.
    ReleasePackage:
      type: object
      required:
      - id
      - name
      properties:
        Id:
          type: integer
          format: int64
        Name:
          type: string
        affectedItems:
          type: array
          items:
            $ref: '#/components/schemas/AffectedItem_2'
        attachments:
          type: array
          items:
            $ref: '#/components/schemas/Attachment'
        next:
          type: string
          description: URL to retrieve the next page of affected items associated to this release package. Will only be provided if number of affected items exceeds provided limit or Propel limit of 1000
    Document:
      type: object
      description: Document records attached to items
      required:
      - id
      properties:
        id:
          type: string
          description: Id of the Attachment (Document__c) record
        name:
          type: string
          description: Name of the attachment
        PDLM__Document_Version__c:
          type: string
          description: The latest content version ID associated with the attachment. This contains the files latest base64 encoded content.
        PDLM__External_Attachment_URL__c:
          type: string
          description: URL of the attachment if applicable.
        Custom_Field__c:
          type: string
          description: Placeholder for any custom fields an org may have on the Document__c object.
  securitySchemes:
    salesforceOAuth:
      type: oauth2
      description: Salesforce OAuth 2.0 (Connected App). Server-side (authorization code) flow.
      flows:
        authorizationCode:
          authorizationUrl: https://login.salesforce.com/services/oauth2/authorize
          tokenUrl: https://login.salesforce.com/services/oauth2/token
          scopes:
            full: Full access
            api: API access
            web: Web access
            refresh_token: Obtain refresh tokens for offline access
x-refined-from:
- propelplm-change-put-openapi.yml
- propelplm-core-openapi.yml
- propelplm-release-package-openapi.yml