• Vikash Singh 47
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Could you please help me out on the Salesforce case create method, I am using Perl to create the Salesforce case however want to know how to add multiple contactId to create the case.

Here is the case method example for a single contactId:
my %caseCreate = (
                type => 'Case',
                AccountId => 'Test account',
                ContactId => '0022ABC', 
                OwnerId => '0011XYZ',
                ......
);

 
Could some one please help me here to add comment on already created case using PERL API.
I appreciate any assistance that can be provided.
Could you please help me out on the Salesforce case create method, I am using Perl to create the Salesforce case however want to know how to add multiple contactId to create the case.

Here is the case method example for a single contactId:
my %caseCreate = (
                type => 'Case',
                AccountId => 'Test account',
                ContactId => '0022ABC', 
                OwnerId => '0011XYZ',
                ......
);