When to use Salesforce vs Propel APIs
Because Propel is built on the Salesforce Platform, as a developer, you have access to features from both systems. Salesforce has its own APIs which can be leveraged when Propel APIs do not suffice for your use case.
The distinction between Propel APIs and Salesforce APIs can be thought of as coarse-grained vs fine-grained APIs. While Propel APIs have business logic embedded in them, Salesforce APIs operate at a more granular level. An example of this is how you would create a new Item record with the Propel API versus how you would do the same with the Salesforce API.
Here are some high-level use cases and when you might want to use certain APIs:
Propel Standard API | Propel Import API | Salesforce REST API (Query) | Salesforce REST API (Object) | |
---|---|---|---|---|
CRUD Propel Objects (PDLM Namespace) | X | |||
Bulk Insert/Upsert PLM Data | X | |||
Bulk Fetch Data | X | |||
Query for Data with Criteria | X | |||
CRUD Custom Objects | X |
Rule of Thumb
If you've tried with Propel APIs and have exhausted all options, use Salesforce APIs. This may require you to implement some of Propel's business logic in your code.
Example: Creating an Item
Propel Standard API
To create a new Item in Propel via the Propel API, only one request is needed.
Simply make a POST
request to the following endpoint while passing the category
of Item:
The Propel Endpoint will:
- Resolve the category name to an Id
- Insert a new
PDLM__Item__c
- Insert a new
PDLM__Item_Revision__c
All of the actions will occur in one transaction initiated via the API.
Salesforce API
To create a new Item in Propel via the Salesforce API, you must follow these steps:
First, query for the Category
Id for the type of Item you want to create.
Second, using the Id you received from step one, insert a new PDLM__Item__c
record.
Third, using the Item Id from the second step, make another call to insert the PDLM__Item_Revision__c
record.
And then, finally, after three separate transactions you've created an Item. As you can see, leveraging the Propel APIs can be beneficial to minimize the number of API requests you need to make as well as simplifying your application. Additionally, Propel APIs are maintained and versioned by Propel and we will not make breaking changes to our APIs if the underlying schema changes unlike Salesforce APIs.