Propel Software (Propel PLM) Configuration API

The Configuration API from Propel Software (Propel PLM) — 1 operation(s) for configuration.

Operations 1

POST /configuration/ Upsert a new configuration. A configuration is a custom setting or metadata within the package, the former being keyed by the 'Name' field whilst the latter on the 'Label' field.

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-configuration-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-configuration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Propel Configuration API
  description: Propel Configuration 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: Configuration
paths:
  /configuration/:
    post:
      summary: Upsert a new configuration. A configuration is a custom setting or metadata within the package, the former being keyed by the 'Name' field whilst the latter on the 'Label' field.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              oneOf:
              - $ref: '#/components/schemas/GoogleDriveSetting'
              - $ref: '#/components/schemas/SharingRule'
      responses:
        '200':
          description: Successfully created new Configuration
          content:
            application/json:
              schema:
                type: object
                oneOf:
                - $ref: '#/components/schemas/GoogleDriveSetting'
                - $ref: '#/components/schemas/SharingRule'
        '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:
      - Configuration
components:
  schemas:
    SharingRule:
      description: Example sharing rule custom metadata
      type: object
      required:
      - Label
      properties:
        Label:
          type: string
          example: Sharing Rule 8 - Share with Manufacturers
        Share_With_Field__c:
          type: string
    GoogleDriveSetting:
      description: Example google drive custom setting
      type: object
      required:
      - Name
      properties:
        Name:
          type: string
          example: GoogleDrive
        Access_Token__c:
          type: string
        Client_Id__c:
          type: string
          description: required if setting is brand new
        Client_Secret__c:
          type: string
          description: required if setting is brand new
        Drafts_Folder_Id__c:
          type: string
        In_Review_Folder_Id__c:
          type: string
        Refresh_Token__c:
          type: string
        Released_Folder_Id__c:
          type: string
    Error:
      description: A human readable error message or null/blank
      type: string
      example: Request body malformed.
  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