Insert blob data
The Salesforce REST API Insert Blob Data tool enables seamless insertion of binary large objects (BLOBs) into Salesforce standard objects. Designed for effortless integration, it allows developers to upload files such as documents and images directly through API calls using multipart/form-data.
Features
- Supports insertion of binary large objects (BLOBs) into Salesforce standard objects.
- Handles multipart/form-data requests for seamless file uploads.
- Allows specification of file metadata including filename and content type.
- Compatible with various Salesforce standard entities such as Documents and Attachments.
- Fully documented with direct reference to Salesforce API documentation for easy implementation.
Benefits
- Simplifies uploading files to Salesforce via API, enhancing automation workflows.
- Ensures accurate attachment of binary data to Salesforce records for data consistency.
- Reduces manual data entry and upload efforts, saving time and resources.
- Increases developer productivity with clear input schemas and documentation.
- Enhances Salesforce data management by integrating diverse content types directly through API calls.
Description
Inserts blob data in Salesforce standard objects. See the documentation
Parameters
7 parameters
| Name | Type | Description |
|---|---|---|
| entiyNamerequired | string | Name of the entity to insert as part of the form-data sent along the Salesforce API as a request with multipart/form-data content type. I.e. entityDocument for Documents. |
| entityDocumentrequired | string | Salesforce object entity to insert. |
| formContentNamerequired | string | Name of the binary content to insert as part of the form-data sent along the Salesforce API as a request with multipart/form-data content type. |
| filenamerequired | string | Filename of the blob data to insert. |
| contentTyperequired | string | Mime type of the content to insert. |
| attachmentBinarycontentrequired | string | Binary content of the blob data to insert. |
| sobjectNamerequired | string | Salesforce standard object type to insert. |