Uploads to Salesforce

Hey all, has anyone had any success with uploading attachments to Salesforce on custom objects?

We have a file uploader. As long as Salesforce has a REST API (using OpenAPI or otherwise) with authentication we support. Feel free to give it a try and we’re happy to help you get through it.

@joe
I’ve used this using the FilePicker Component.

Use the Salesforce Connector and then set “Attachment” as the Resource Type to Create.

{
  "ParentId": "{{table1.selectedRow.data.Id}}",
  "Name": "{{filepicker1.file.name}}",
  "Body": "{{filepicker1.file.data}}"
}
1 Like