ContributionsMost RecentMost LikesSolutionsPipeline ownership change Hi, How can I change the owner of a pipeline? Thanks, Mihir Re: How to post mixed content using rest post snap? Hi @Spiro_Taleski, Yes, Salesforce will send an error response if you try to upload content greater than 50MB/37MB using Salesforce API’s. I have tried as you suggested but it didn’t work. ☹️ Thanks, Mihir Re: How to post mixed content using rest post snap? @Spiro_Taleski I tried using Salesforce Create snap with ContentVersion object but it is has a limitation of uploading 50Mb of text file or 37Mb of binary file. But I have upload a file whose size can vary upto ~250Mb. Thanks, Mihir How to post mixed content using rest post snap? I have a use case to upload a file (size > 50MB) to Salesforce. As Salesforce snappack supports file upload upto 50MB file so to upload file of size more than 50MB we need to use multipart form data request. developer.salesforce.com Salesforce Developers Salesforce Developer Website One part of request should be non-binary data and other part is binary data (file content) like below: –boundary_string Content-Disposition: form-data; name=“entity_content”; Content-Type: application/json { “ContentDocumentId” : “069D00000000so2”, “ReasonForChange” : “Marketing materials updated”, “PathOnClient” : “Q1 Sales Brochure.pdf” } –boundary_string Content-Type: application/octet-stream Content-Disposition: form-data; name=“VersionData”; filename=“Q1 Sales Brochure.pdf” Binary data goes here. –boundary_string– Can someone help me how to achieve this in rest post snap? Thanks, Mihir File upload to Salesforce ContentVersion through rest snap using multipart form Can someone help me to upload file into Salesforce ContentVersion using Rest snap? Salesforce - Uploading a blob to Salesforce link: Salesforce Developers!