Custom Type
This guide outlines the various operations you can perform for managing Custom Objects in Salesforce using the Salesforce connector. These operations enable you to automate and streamline your custom data management processes.
- Create Custom Object Operation
Overview
Automate the creation of a new Custom Object in Salesforce.
Object Name: The name of the Custom Object (String, required).
Fields: Define the fields for the Custom Object (Object, required).
Example JSON Payload
json
Copy code
{
"ObjectName": "Custom_Object_Name",
"Fields": {
"Field1": {
"Type": "String",
"Label": "Field 1"
},
"Field2": {
"Type": "Number",
"Label": "Field 2"
}
}
}
- Delete Custom Object Operation
Overview
Automate the deletion of an existing Custom Object.
Object ID: Specify the unique identifier of the Custom Object to delete (String, required).
Example JSON Payload
json
Copy code
{
"ObjectID": "a0A1t00000XYZ123456"
}
- Get Custom Object Operation
Overview
Retrieve detailed information about a specific Custom Object.
Object ID: Specify the unique identifier of the Custom Object (String, required).
Example JSON Payload
json
Copy code
{
"ObjectID": "a0A1t00000XYZ123456"
}
- Get Many Custom Objects Operation
Overview
Fetch multiple Custom Objects based on specified criteria.
Filters (Optional): Define criteria to filter Custom Objects (Object).
Example JSON Payload
json
Copy code
{
"Filters": {
"Field1": "SomeValue"
}
}
- Update Custom Object Operation
Overview
Modify existing attributes of a Custom Object.
Object ID: Specify the unique identifier of the Custom Object (String, required).
Fields to Update: Specify which fields to change (Object, required).
Example JSON Payload
json
Copy code
{
"ObjectID": "a0A1t00000XYZ123456",
"FieldsToUpdate": {
"Field1": "UpdatedValue",
"Field2": 42
}
}
Updated 5 months ago