Skip to content

Instantly share code, notes, and snippets.

@albinkjellin
Created January 27, 2012 21:29
Show Gist options
  • Save albinkjellin/1691015 to your computer and use it in GitHub Desktop.
Save albinkjellin/1691015 to your computer and use it in GitHub Desktop.
Intacct Create Customer
<flow name="createcustomer">
<http:inbound-endpoint host="localhost" port="8881" path="createcustomer" exchange-pattern="request-response"/>
<intacct:execute type="CreateCustomer" functionControlId="#[string:customer-#[mule:message.id]]">
<intacct:commands>
<intacct:command>
<customerid>#[groovy:['value':'mule0001']]</customerid>
<name>MuleSoft</name>
<status>active</status>
</intacct:command>
</intacct:commands>
</intacct:execute>
</flow>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment