Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 925 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 925 Bytes

rally-salesforce-integration

Sync Rally data to Salesforce however you want.

RallySync.run(
  'apikey', // your api key
  'My_Custom_Object__c', // sobject in your system
  'My_ObjectID_Field__c',  // the field you want to use for upsert
  new Map<String, String>{'Name' => 'Name'}, // field mappings,
  new Map<String, Object>{'Project__c' => '0db000000000833u'}, // literals / defaults
  '(Tags.name = "CloudAnswers")' // rally query for filtering results
);

Managed Package

Version 1.0

Initial version where you just run it via anon apex

Production Install Link | Sandbox Install Link

TODO

  1. Point-and-click scheduling instead of anon apex
  2. Handle paginated results (more than one iteration of batch)