Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E4ACD200D44 for ; Mon, 6 Nov 2017 00:33:44 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E34C8160BFE; Sun, 5 Nov 2017 23:33:44 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5BABE160BE7 for ; Mon, 6 Nov 2017 00:33:44 +0100 (CET) Received: (qmail 5330 invoked by uid 500); 5 Nov 2017 23:33:43 -0000 Mailing-List: contact dev-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list dev@camel.apache.org Received: (qmail 5319 invoked by uid 99); 5 Nov 2017 23:33:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Nov 2017 23:33:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6968DDFB6F; Sun, 5 Nov 2017 23:33:42 +0000 (UTC) From: vspiliop To: dev@camel.apache.org Reply-To: dev@camel.apache.org Message-ID: Subject: [GitHub] camel pull request #2079: Salesforce composite api external ids in body supp... Content-Type: text/plain Date: Sun, 5 Nov 2017 23:33:42 +0000 (UTC) archived-at: Sun, 05 Nov 2017 23:33:45 -0000 GitHub user vspiliop opened a pull request: https://github.com/apache/camel/pull/2079 Salesforce composite api external ids in body support Hope it is of use :-) 1. Introducing support for Salesforce Composite REST API (https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_composite.htm). I could not find any related jira.. 2. Extending the salesforce maven plugin to generate of DTO(s) for doing updates via Salesforce External Ids in the “body” json field. ` "body" : { "Account__r": { "External_Id_Of_Account__c" : "123456" } , "AnotherField__c":"1234" } ` Related jira is https://issues.apache.org/jira/browse/CAMEL-10193. The implementation is the proposed solution mentioned in the discussion. Thanks!! You can merge this pull request into a Git repository by running: $ git pull https://github.com/vspiliop/camel salesforce-composite-api-external-ids-in-body-support Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/2079.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #2079 ---- commit d3f2aebba2e483414c788f11a977bc5f6e22e66e Author: Spiliopoulos, Vassilis (ELS-CON) Date: 2017-11-04T11:24:31Z supporting composite API and externalIds in the json body commit 56f6517047ed522cadd81deac3c0d3c629840473 Author: Spiliopoulos, Vassilis (ELS-CON) Date: 2017-11-05T22:37:01Z introducing salesforce composite api support and usage of external ids in json body ---- ---