Mule Rest Post致电SFDC创建领导

时间:2014-02-21 16:01:43

标签: rest mule

我需要使用相应的凭据向SFDC发布Rest调用,并在SFDC中创建SalesLead。响应应以Acknowledgement JSON响应的形式出现。 我不知道如何使用http:rest-service-component发布数据以创建潜在客户。 任何帮助或样品都表示赞赏......

1 个答案:

答案 0 :(得分:0)

现在使用“https:outbound-endpoint”解决它。所有这些代码需要一个JSON对象作为输入。

下面是snippnet:

<https:outbound-endpoint
        method="POST" exchange-pattern="request-response"
        address="url"
        contentType="application/json" doc:name="HTTP" >
        <message-properties-transformer scope="outbound"> 
        <add-message-property key="Authorization" value="OAuth ****"/>
        </message-properties-transformer> 
         </https:outbound-endpoint>     
        <echo-component doc:name="Echo"/>