restforce-db 3.0.0 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/restforce/db.rb +2 -0
- data/lib/restforce/db/associator.rb +2 -11
- data/lib/restforce/db/attacher.rb +91 -0
- data/lib/restforce/db/cleaner.rb +3 -13
- data/lib/restforce/db/collector.rb +1 -10
- data/lib/restforce/db/field_processor.rb +53 -17
- data/lib/restforce/db/initializer.rb +6 -14
- data/lib/restforce/db/instances/salesforce.rb +2 -1
- data/lib/restforce/db/record_types/salesforce.rb +47 -20
- data/lib/restforce/db/synchronizer.rb +1 -9
- data/lib/restforce/db/task.rb +32 -0
- data/lib/restforce/db/version.rb +1 -1
- data/lib/restforce/db/worker.rb +21 -59
- data/test/cassettes/Restforce_DB/accessing_Salesforce/uses_the_configured_credentials.yml +6 -6
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_build/returns_an_associated_record_populated_with_the_Salesforce_attributes.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_build/when_no_salesforce_record_is_found_for_the_association/proceeds_without_constructing_any_records.yml +185 -34
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_build/when_the_associated_record_has_already_been_persisted/assigns_the_existing_record.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_build/when_the_associated_record_has_been_cached/uses_the_cached_record.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_build/when_the_association_is_non-building/proceeds_without_constructing_any_records.yml +97 -44
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_build/with_an_unrelated_association_mapping/proceeds_without_raising_an_error.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_lookups/returns_a_hash_of_the_associated_records_lookup_IDs.yml +36 -36
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_lookups/when_there_is_currently_no_associated_record/and_the_underlying_association_is_one-to-many/still_returns_a_nil_lookup_value_in_the_hash.yml +20 -20
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_lookups/when_there_is_currently_no_associated_record/returns_a_nil_lookup_value_in_the_hash.yml +20 -20
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_synced_for_/when_a_matching_associated_record_has_been_synchronized/returns_true.yml +105 -52
- data/test/cassettes/Restforce_DB_Associations_BelongsTo/with_an_inverse_mapping/_synced_for_/when_no_matching_associated_record_has_been_synchronized/returns_false.yml +105 -52
- data/test/cassettes/Restforce_DB_Associations_HasMany/with_an_inverse_mapping/_build/builds_a_number_of_associated_records_from_the_data_in_Salesforce.yml +191 -87
- data/test/cassettes/Restforce_DB_Associations_HasMany/with_an_inverse_mapping/_build/when_no_salesforce_record_is_found_for_the_association/proceeds_without_constructing_any_records.yml +139 -35
- data/test/cassettes/Restforce_DB_Associations_HasMany/with_an_inverse_mapping/_build/when_the_associated_records_have_alrady_been_persisted/constructs_the_association_from_the_existing_records.yml +191 -87
- data/test/cassettes/Restforce_DB_Associations_HasMany/with_an_inverse_mapping/_build/when_the_associated_records_have_been_cached/uses_the_cached_records.yml +191 -87
- data/test/cassettes/Restforce_DB_Associations_HasMany/with_an_inverse_mapping/_build/when_the_association_is_non-building/proceeds_without_constructing_any_records.yml +81 -28
- data/test/cassettes/Restforce_DB_Associations_HasMany/with_an_inverse_mapping/_synced_for_/when_a_matching_associated_record_has_been_synchronized/returns_true.yml +191 -87
- data/test/cassettes/Restforce_DB_Associations_HasMany/with_an_inverse_mapping/_synced_for_/when_no_matching_associated_record_has_been_synchronized/returns_false.yml +139 -35
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_build/and_a_nested_association_on_the_associated_mapping/recursively_builds_all_associations.yml +278 -76
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_build/returns_an_associated_record_populated_with_the_Salesforce_attributes.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_build/when_no_salesforce_record_is_found_for_the_association/proceeds_without_constructing_any_records.yml +186 -35
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_build/when_the_associated_record_has_already_been_persisted/assigns_the_existing_record.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_build/when_the_associated_record_has_been_cached/uses_the_cached_record.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_build/when_the_association_is_non-building/proceeds_without_constructing_any_records.yml +142 -44
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_synced_for_/when_a_matching_associated_record_has_been_synchronized/returns_true.yml +203 -52
- data/test/cassettes/Restforce_DB_Associations_HasOne/with_an_inverse_mapping/_synced_for_/when_no_matching_associated_record_has_been_synchronized/returns_false.yml +203 -52
- data/test/cassettes/Restforce_DB_Associator/_run/given_a_BelongsTo_association/given_another_record_for_association/when_the_Salesforce_association_is_out_of_date/updates_the_association_ID_in_Salesforce.yml +124 -124
- data/test/cassettes/Restforce_DB_Associator/_run/given_a_BelongsTo_association/given_another_record_for_association/when_the_database_association_is_out_of_date/updates_the_associated_record_in_the_database.yml +224 -126
- data/test/cassettes/Restforce_DB_Attacher/_run/given_a_Salesforce_record_with_an_upsert_ID/for_a_Passive_strategy/does_nothing.yml +119 -0
- data/test/cassettes/Restforce_DB_Attacher/_run/given_a_Salesforce_record_with_an_upsert_ID/for_an_Always_strategy/links_the_Salesforce_record_to_the_matching_database_record.yml +246 -0
- data/test/cassettes/Restforce_DB_Attacher/_run/given_a_Salesforce_record_with_an_upsert_ID/for_an_Always_strategy/when_no_matching_database_record_can_be_found/wipes_the_SynchronizationID__c_on_the_Salesforce_record.yml +284 -0
- data/test/cassettes/Restforce_DB_Attacher/_run/given_a_Salesforce_record_with_an_upsert_ID/for_an_Always_strategy/when_the_matching_database_record_has_a_salesforce_id/does_not_change_the_current_Salesforce_ID.yml +246 -0
- data/test/cassettes/Restforce_DB_Attacher/_run/given_a_Salesforce_record_with_an_upsert_ID/for_an_Always_strategy/when_the_matching_database_record_has_a_salesforce_id/wipes_the_SynchronizationId__c.yml +284 -0
- data/test/cassettes/{Restforce_DB_Synchronizer/_run/given_a_Salesforce_record_with_an_associated_database_record/updates_the_salesforce_record.yml → Restforce_DB_Attacher/_run/given_a_Salesforce_record_with_an_upsert_ID/for_an_Always_strategy/when_the_upsert_ID_is_for_another_database_model/does_not_wipe_the_SynchronizationId__c.yml} +57 -95
- data/test/cassettes/{Restforce_DB_Synchronizer/_run/given_a_Salesforce_record_with_an_associated_database_record/updates_the_database_record.yml → Restforce_DB_Attacher/_run/given_a_Salesforce_record_with_an_upsert_ID/for_an_Always_strategy/wipes_the_SynchronizationId__c.yml} +77 -116
- data/test/cassettes/Restforce_DB_Cleaner/_run/given_a_synchronized_Salesforce_record/when_the_mapping_has_no_conditions/does_not_drop_the_synchronized_database_record.yml +20 -20
- data/test/cassettes/Restforce_DB_Cleaner/_run/given_a_synchronized_Salesforce_record/when_the_record_does_not_meet_the_mapping_conditions/but_meets_conditions_for_a_parallel_mapping/does_not_drop_the_synchronized_database_record.yml +98 -45
- data/test/cassettes/Restforce_DB_Cleaner/_run/given_a_synchronized_Salesforce_record/when_the_record_does_not_meet_the_mapping_conditions/drops_the_synchronized_database_record.yml +90 -37
- data/test/cassettes/Restforce_DB_Cleaner/_run/given_a_synchronized_Salesforce_record/when_the_record_has_been_deleted_in_Salesforce/drops_the_synchronized_database_record.yml +20 -20
- data/test/cassettes/Restforce_DB_Cleaner/_run/given_a_synchronized_Salesforce_record/when_the_record_meets_the_mapping_conditions/does_not_drop_the_synchronized_database_record.yml +89 -36
- data/test/cassettes/Restforce_DB_Collector/_run/given_a_Salesforce_record_with_an_associated_database_record/returns_the_attributes_from_both_records.yml +103 -50
- data/test/cassettes/Restforce_DB_Collector/_run/given_an_existing_Salesforce_record/which_has_been_synchronized/returns_the_attributes_from_the_Salesforce_record.yml +102 -73
- data/test/cassettes/Restforce_DB_Collector/_run/given_an_existing_Salesforce_record/which_has_not_been_synchronized/does_not_store_any_attributes.yml +81 -40
- data/test/cassettes/Restforce_DB_Collector/_run/given_an_existing_database_record/returns_the_attributes_from_the_database_record.yml +66 -13
- data/test/cassettes/Restforce_DB_Collector/_run/when_the_record_has_not_been_updated_outside_of_the_system/does_not_collect_any_changes.yml +82 -29
- data/test/cassettes/Restforce_DB_Initializer/_run/given_an_existing_Salesforce_record/for_a_Passive_strategy/does_not_create_a_database_record.yml +20 -20
- data/test/cassettes/Restforce_DB_Initializer/_run/given_an_existing_Salesforce_record/for_an_Always_strategy/creates_a_matching_database_record.yml +81 -28
- data/test/cassettes/Restforce_DB_Initializer/_run/given_an_existing_database_record/for_an_Always_strategy/populates_Salesforce_with_the_new_record.yml +103 -67
- data/test/cassettes/Restforce_DB_Instances_Salesforce/_synced_/when_a_matching_database_record_exists/returns_true.yml +81 -28
- data/test/cassettes/Restforce_DB_Instances_Salesforce/_synced_/when_no_matching_database_record_exists/returns_false.yml +81 -28
- data/test/cassettes/Restforce_DB_Instances_Salesforce/_update_/updates_the_local_record_with_the_passed_attributes.yml +59 -59
- data/test/cassettes/Restforce_DB_Instances_Salesforce/_update_/updates_the_record_in_Salesforce_with_the_passed_attributes.yml +67 -67
- data/test/cassettes/Restforce_DB_Instances_Salesforce/_updated_internally_/when_another_user_made_the_last_change/returns_false.yml +18 -18
- data/test/cassettes/Restforce_DB_Instances_Salesforce/_updated_internally_/when_our_client_made_the_last_change/returns_true.yml +101 -48
- data/test/cassettes/Restforce_DB_Model/given_a_database_model_which_includes_the_module/_force_sync_/given_a_previously-synchronized_record_for_a_mapped_model/force-updates_both_synchronized_records.yml +67 -67
- data/test/cassettes/Restforce_DB_Model/given_a_database_model_which_includes_the_module/_force_sync_/given_an_unsynchronized_record_for_a_mapped_model/creates_a_matching_record_in_Salesforce.yml +78 -42
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_all/returns_a_list_of_the_existing_records_in_Salesforce.yml +82 -29
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_create_/creates_a_record_in_Salesforce_from_the_passed_database_record_s_attributes.yml +70 -34
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_create_/updates_the_database_record_with_the_Salesforce_record_s_ID.yml +70 -34
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_create_/when_a_Salesforce_record_already_exists_for_the_database_instance/uses_the_existing_record.yml +76 -40
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_create_/wipes_the_temporary_SynchronizationId__c_value_used_for_upsert.yml +247 -0
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_find/finds_existing_records_in_Salesforce.yml +81 -28
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_find/given_a_set_of_mapping_conditions/when_a_record_does_not_meet_the_conditions/does_not_find_the_record.yml +80 -27
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_find/given_a_set_of_mapping_conditions/when_a_record_meets_the_conditions/finds_the_record.yml +81 -28
- data/test/cassettes/Restforce_DB_RecordTypes_Salesforce/_find/returns_nil_when_no_matching_record_exists.yml +65 -12
- data/test/cassettes/Restforce_DB_Strategies_Always/_build_/given_a_Salesforce_record/wants_to_build_a_new_matching_record.yml +81 -28
- data/test/cassettes/Restforce_DB_Strategies_Always/_build_/given_a_Salesforce_record/with_a_corresponding_database_record/does_not_want_to_build_a_new_record.yml +81 -28
- data/test/cassettes/Restforce_DB_Strategies_Associated/_build_/given_an_inverse_mapping/with_a_synchronized_association_record/wants_to_build_a_new_record.yml +103 -52
- data/test/cassettes/Restforce_DB_Strategies_Associated/_build_/given_an_inverse_mapping/with_an_existing_database_record/does_not_want_to_build_a_new_record.yml +95 -44
- data/test/cassettes/Restforce_DB_Strategies_Associated/_build_/given_an_inverse_mapping/with_no_synchronized_association_record/does_not_want_to_build_a_new_record.yml +103 -52
- data/test/cassettes/Restforce_DB_Synchronizer/_run/given_a_Salesforce_record_with_an_associated_database_record/when_the_change_timestamp_is_stale/does_not_update_the_database_record.yml +60 -96
- data/test/cassettes/Restforce_DB_Synchronizer/_run/given_a_Salesforce_record_with_an_associated_database_record/when_the_change_timestamp_is_stale/does_not_update_the_salesforce_record.yml +97 -44
- data/test/cassettes/Restforce_DB_Synchronizer/_run/given_a_Salesforce_record_with_an_associated_database_record/when_the_changes_are_current/updates_the_database_record.yml +77 -77
- data/test/cassettes/Restforce_DB_Synchronizer/_run/given_a_Salesforce_record_with_an_associated_database_record/when_the_changes_are_current/updates_the_salesforce_record.yml +85 -85
- data/test/cassettes/Restforce_DB_Synchronizer/_run/given_a_Salesforce_record_with_no_associated_database_record/does_nothing_for_this_specific_mapping.yml +89 -36
- data/test/cassettes/Restforce_DB_Worker/a_race_condition_during_synchronization/does_not_change_the_user-entered_name_on_the_database_record.yml +153 -116
- data/test/cassettes/Restforce_DB_Worker/a_race_condition_during_synchronization/overrides_the_stale-but-more-recent_name_on_the_Salesforce.yml +161 -124
- data/test/lib/restforce/db/attacher_test.rb +93 -0
- data/test/lib/restforce/db/field_processor_test.rb +62 -23
- data/test/lib/restforce/db/record_types/salesforce_test.rb +5 -0
- data/test/lib/restforce/db/worker_test.rb +4 -3
- metadata +13 -4
@@ -21,10 +21,10 @@ http_interactions:
|
|
21
21
|
message: OK
|
22
22
|
headers:
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Fri, 26 Jun 2015 20:00:20 GMT
|
25
25
|
Set-Cookie:
|
26
|
-
- BrowserId=
|
27
|
-
|
26
|
+
- BrowserId=yvzcChLGQOu9hbilFkTiwQ;Path=/;Domain=.salesforce.com;Expires=Tue,
|
27
|
+
25-Aug-2015 20:00:20 GMT
|
28
28
|
Expires:
|
29
29
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
30
30
|
Pragma:
|
@@ -37,12 +37,12 @@ http_interactions:
|
|
37
37
|
- chunked
|
38
38
|
body:
|
39
39
|
encoding: ASCII-8BIT
|
40
|
-
string: '{"id":"https://login.salesforce.com/id/00D1a000000H3O9EAK/0051a000000UGT8AAO","issued_at":"
|
40
|
+
string: '{"id":"https://login.salesforce.com/id/00D1a000000H3O9EAK/0051a000000UGT8AAO","issued_at":"1435348820598","token_type":"Bearer","instance_url":"https://<host>","signature":"ZDAMdOg1g1ZoGoUlDSXgzjrhY3kEdOlWu5tvXobdwrs=","access_token":"00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs"}'
|
41
41
|
http_version:
|
42
|
-
recorded_at:
|
42
|
+
recorded_at: Fri, 26 Jun 2015 20:00:20 GMT
|
43
43
|
- request:
|
44
44
|
method: get
|
45
|
-
uri: https://<host>/services/data/<api_version>/
|
45
|
+
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/describe
|
46
46
|
body:
|
47
47
|
encoding: US-ASCII
|
48
48
|
string: ''
|
@@ -50,7 +50,7 @@ http_interactions:
|
|
50
50
|
User-Agent:
|
51
51
|
- Faraday v0.9.1
|
52
52
|
Authorization:
|
53
|
-
- OAuth 00D1a000000H3O9!
|
53
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
54
54
|
Accept-Encoding:
|
55
55
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
56
56
|
Accept:
|
@@ -61,26 +61,41 @@ http_interactions:
|
|
61
61
|
message: OK
|
62
62
|
headers:
|
63
63
|
Date:
|
64
|
-
-
|
64
|
+
- Fri, 26 Jun 2015 20:00:21 GMT
|
65
65
|
Set-Cookie:
|
66
|
-
- BrowserId=
|
67
|
-
|
66
|
+
- BrowserId=yhndEF6mRo6gRWxHPlZalg;Path=/;Domain=.salesforce.com;Expires=Tue,
|
67
|
+
25-Aug-2015 20:00:21 GMT
|
68
68
|
Expires:
|
69
69
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
70
70
|
Sforce-Limit-Info:
|
71
|
-
- api-usage=
|
71
|
+
- api-usage=592/15000
|
72
|
+
Org.eclipse.jetty.server.include.etag:
|
73
|
+
- aa7ee96f
|
74
|
+
Last-Modified:
|
75
|
+
- Wed, 24 Jun 2015 02:10:32 GMT
|
72
76
|
Content-Type:
|
73
77
|
- application/json;charset=UTF-8
|
78
|
+
Etag:
|
79
|
+
- aa7ee96-gzip"
|
74
80
|
Transfer-Encoding:
|
75
81
|
- chunked
|
76
82
|
body:
|
77
83
|
encoding: ASCII-8BIT
|
78
|
-
string: '{"
|
84
|
+
string: '{"activateable":false,"childRelationships":[{"cascadeDelete":true,"childSObject":"AttachedContentDocument","deprecatedAndHidden":false,"field":"LinkedEntityId","relationshipName":"AttachedContentDocuments","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"Attachment","deprecatedAndHidden":false,"field":"ParentId","relationshipName":"Attachments","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"CollaborationGroupRecord","deprecatedAndHidden":false,"field":"RecordId","relationshipName":"RecordAssociatedGroups","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"CombinedAttachment","deprecatedAndHidden":false,"field":"ParentId","relationshipName":"CombinedAttachments","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"ContentDocumentLink","deprecatedAndHidden":false,"field":"LinkedEntityId","relationshipName":null,"restrictedDelete":false},{"cascadeDelete":false,"childSObject":"ContentVersion","deprecatedAndHidden":false,"field":"FirstPublishLocationId","relationshipName":null,"restrictedDelete":false},{"cascadeDelete":true,"childSObject":"CustomObjectDetail__c","deprecatedAndHidden":false,"field":"CustomObject__c","relationshipName":"CustomObjectDetails__r","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"EntitySubscription","deprecatedAndHidden":false,"field":"ParentId","relationshipName":"FeedSubscriptionsForEntity","restrictedDelete":false},{"cascadeDelete":false,"childSObject":"FeedComment","deprecatedAndHidden":false,"field":"ParentId","relationshipName":null,"restrictedDelete":false},{"cascadeDelete":true,"childSObject":"FeedItem","deprecatedAndHidden":false,"field":"ParentId","relationshipName":null,"restrictedDelete":false},{"cascadeDelete":true,"childSObject":"Note","deprecatedAndHidden":false,"field":"ParentId","relationshipName":"Notes","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"NoteAndAttachment","deprecatedAndHidden":false,"field":"ParentId","relationshipName":"NotesAndAttachments","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"ProcessInstance","deprecatedAndHidden":false,"field":"TargetObjectId","relationshipName":"ProcessInstances","restrictedDelete":false},{"cascadeDelete":false,"childSObject":"ProcessInstanceHistory","deprecatedAndHidden":false,"field":"TargetObjectId","relationshipName":"ProcessSteps","restrictedDelete":false},{"cascadeDelete":true,"childSObject":"TopicAssignment","deprecatedAndHidden":false,"field":"EntityId","relationshipName":"TopicAssignments","restrictedDelete":false}],"compactLayoutable":true,"createable":true,"custom":true,"customSetting":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"fields":[{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":true,"inlineHelpText":null,"label":"Record
|
85
|
+
ID","length":18,"name":"Id","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"id","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Owner
|
86
|
+
ID","length":18,"name":"OwnerId","nameField":false,"namePointing":true,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":["Group","User"],"relationshipName":"Owner","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Deleted","length":0,"name":"IsDeleted","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:boolean","sortable":true,"type":"boolean","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":240,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":true,"inlineHelpText":null,"label":"CustomObject
|
87
|
+
Name","length":80,"name":"Name","nameField":true,"namePointing":false,"nillable":true,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:string","sortable":true,"type":"string","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":false,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Created
|
88
|
+
Date","length":0,"name":"CreatedDate","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:dateTime","sortable":true,"type":"datetime","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Created
|
89
|
+
By ID","length":18,"name":"CreatedById","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":["User"],"relationshipName":"CreatedBy","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":false,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Last
|
90
|
+
Modified Date","length":0,"name":"LastModifiedDate","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:dateTime","sortable":true,"type":"datetime","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Last
|
91
|
+
Modified By ID","length":18,"name":"LastModifiedById","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":["User"],"relationshipName":"LastModifiedBy","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":false,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"System
|
92
|
+
Modstamp","length":0,"name":"SystemModstamp","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:dateTime","sortable":true,"type":"datetime","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":765,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":false,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Example
|
93
|
+
Field","length":255,"name":"Example_Field__c","nameField":false,"namePointing":false,"nillable":true,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:string","sortable":true,"type":"string","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":false,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Friend","length":18,"name":"Friend__c","nameField":false,"namePointing":false,"nillable":true,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":["Contact"],"relationshipName":"Friend__r","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Visible","length":0,"name":"Visible__c","nameField":false,"namePointing":false,"nillable":false,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:boolean","sortable":true,"type":"boolean","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":108,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":false,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":true,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":true,"inlineHelpText":null,"label":"SynchronizationID","length":36,"name":"SynchronizationId__c","nameField":false,"namePointing":false,"nillable":true,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:string","sortable":true,"type":"string","unique":false,"updateable":true,"writeRequiresMasterRead":false}],"keyPrefix":"a00","label":"CustomObject","labelPlural":"CustomObjects","layoutable":true,"listviewable":null,"lookupLayoutable":null,"mergeable":false,"name":"CustomObject__c","queryable":true,"recordTypeInfos":[{"available":true,"defaultRecordTypeMapping":true,"name":"Master","recordTypeId":"012000000000000AAA","urls":{"layout":"/services/data/<api_version>/sobjects/CustomObject__c/describe/layouts/012000000000000AAA"}}],"replicateable":true,"retrieveable":true,"searchLayoutable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"uiEditTemplate":"https://<host>/{ID}/e","sobject":"/services/data/<api_version>/sobjects/CustomObject__c","quickActions":"/services/data/<api_version>/sobjects/CustomObject__c/quickActions","uiDetailTemplate":"https://<host>/{ID}","describe":"/services/data/<api_version>/sobjects/CustomObject__c/describe","rowTemplate":"/services/data/<api_version>/sobjects/CustomObject__c/{ID}","layouts":"/services/data/<api_version>/sobjects/CustomObject__c/describe/layouts","compactLayouts":"/services/data/<api_version>/sobjects/CustomObject__c/describe/compactLayouts","uiNewRecord":"https://<host>/a00/e"}}'
|
79
94
|
http_version:
|
80
|
-
recorded_at:
|
95
|
+
recorded_at: Fri, 26 Jun 2015 20:00:21 GMT
|
81
96
|
- request:
|
82
97
|
method: get
|
83
|
-
uri: https://<host>/services/data/<api_version>/
|
98
|
+
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SynchronizationId__c,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20SystemModstamp%20%3C%202015-06-26T20:00:19Z
|
84
99
|
body:
|
85
100
|
encoding: US-ASCII
|
86
101
|
string: ''
|
@@ -88,7 +103,7 @@ http_interactions:
|
|
88
103
|
User-Agent:
|
89
104
|
- Faraday v0.9.1
|
90
105
|
Authorization:
|
91
|
-
- OAuth 00D1a000000H3O9!
|
106
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
92
107
|
Accept-Encoding:
|
93
108
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
94
109
|
Accept:
|
@@ -99,38 +114,23 @@ http_interactions:
|
|
99
114
|
message: OK
|
100
115
|
headers:
|
101
116
|
Date:
|
102
|
-
-
|
117
|
+
- Fri, 26 Jun 2015 20:00:22 GMT
|
103
118
|
Set-Cookie:
|
104
|
-
- BrowserId=
|
105
|
-
|
119
|
+
- BrowserId=XgXZE7_aSxeUc7lgdb9i-w;Path=/;Domain=.salesforce.com;Expires=Tue,
|
120
|
+
25-Aug-2015 20:00:22 GMT
|
106
121
|
Expires:
|
107
122
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
108
123
|
Sforce-Limit-Info:
|
109
|
-
- api-usage=
|
110
|
-
Org.eclipse.jetty.server.include.etag:
|
111
|
-
- aa7ee96f
|
112
|
-
Last-Modified:
|
113
|
-
- Wed, 24 Jun 2015 02:10:32 GMT
|
124
|
+
- api-usage=592/15000
|
114
125
|
Content-Type:
|
115
126
|
- application/json;charset=UTF-8
|
116
|
-
Etag:
|
117
|
-
- aa7ee96-gzip"
|
118
127
|
Transfer-Encoding:
|
119
128
|
- chunked
|
120
129
|
body:
|
121
130
|
encoding: ASCII-8BIT
|
122
|
-
string: '{"
|
123
|
-
ID","length":18,"name":"Id","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"id","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Owner
|
124
|
-
ID","length":18,"name":"OwnerId","nameField":false,"namePointing":true,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":["Group","User"],"relationshipName":"Owner","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Deleted","length":0,"name":"IsDeleted","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:boolean","sortable":true,"type":"boolean","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":240,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":true,"inlineHelpText":null,"label":"CustomObject
|
125
|
-
Name","length":80,"name":"Name","nameField":true,"namePointing":false,"nillable":true,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:string","sortable":true,"type":"string","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":false,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Created
|
126
|
-
Date","length":0,"name":"CreatedDate","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:dateTime","sortable":true,"type":"datetime","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Created
|
127
|
-
By ID","length":18,"name":"CreatedById","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":["User"],"relationshipName":"CreatedBy","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":false,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Last
|
128
|
-
Modified Date","length":0,"name":"LastModifiedDate","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:dateTime","sortable":true,"type":"datetime","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Last
|
129
|
-
Modified By ID","length":18,"name":"LastModifiedById","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":["User"],"relationshipName":"LastModifiedBy","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":false,"custom":false,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":false,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"System
|
130
|
-
Modstamp","length":0,"name":"SystemModstamp","nameField":false,"namePointing":false,"nillable":false,"permissionable":false,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:dateTime","sortable":true,"type":"datetime","unique":false,"updateable":false,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":765,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":false,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Example
|
131
|
-
Field","length":255,"name":"Example_Field__c","nameField":false,"namePointing":false,"nillable":true,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:string","sortable":true,"type":"string","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":18,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":false,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Friend","length":18,"name":"Friend__c","nameField":false,"namePointing":false,"nillable":true,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":["Contact"],"relationshipName":"Friend__r","relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"tns:ID","sortable":true,"type":"reference","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":0,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":true,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":false,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":false,"inlineHelpText":null,"label":"Visible","length":0,"name":"Visible__c","nameField":false,"namePointing":false,"nillable":false,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:boolean","sortable":true,"type":"boolean","unique":false,"updateable":true,"writeRequiresMasterRead":false},{"autoNumber":false,"byteLength":108,"calculated":false,"calculatedFormula":null,"cascadeDelete":false,"caseSensitive":false,"controllerName":null,"createable":true,"custom":true,"defaultValue":null,"defaultValueFormula":null,"defaultedOnCreate":false,"dependentPicklist":false,"deprecatedAndHidden":false,"digits":0,"displayLocationInDecimal":false,"externalId":true,"filterable":true,"groupable":true,"htmlFormatted":false,"idLookup":true,"inlineHelpText":null,"label":"SynchronizationID","length":36,"name":"SynchronizationId__c","nameField":false,"namePointing":false,"nillable":true,"permissionable":true,"picklistValues":[],"precision":0,"referenceTo":[],"relationshipName":null,"relationshipOrder":null,"restrictedDelete":false,"restrictedPicklist":false,"scale":0,"soapType":"xsd:string","sortable":true,"type":"string","unique":false,"updateable":true,"writeRequiresMasterRead":false}],"keyPrefix":"a00","label":"CustomObject","labelPlural":"CustomObjects","layoutable":true,"listviewable":null,"lookupLayoutable":null,"mergeable":false,"name":"CustomObject__c","queryable":true,"recordTypeInfos":[{"available":true,"defaultRecordTypeMapping":true,"name":"Master","recordTypeId":"012000000000000AAA","urls":{"layout":"/services/data/<api_version>/sobjects/CustomObject__c/describe/layouts/012000000000000AAA"}}],"replicateable":true,"retrieveable":true,"searchLayoutable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"uiEditTemplate":"https://<host>/{ID}/e","sobject":"/services/data/<api_version>/sobjects/CustomObject__c","quickActions":"/services/data/<api_version>/sobjects/CustomObject__c/quickActions","uiDetailTemplate":"https://<host>/{ID}","describe":"/services/data/<api_version>/sobjects/CustomObject__c/describe","rowTemplate":"/services/data/<api_version>/sobjects/CustomObject__c/{ID}","layouts":"/services/data/<api_version>/sobjects/CustomObject__c/describe/layouts","compactLayouts":"/services/data/<api_version>/sobjects/CustomObject__c/describe/compactLayouts","uiNewRecord":"https://<host>/a00/e"}}'
|
131
|
+
string: '{"totalSize":0,"done":true,"records":[]}'
|
132
132
|
http_version:
|
133
|
-
recorded_at:
|
133
|
+
recorded_at: Fri, 26 Jun 2015 20:00:22 GMT
|
134
134
|
- request:
|
135
135
|
method: patch
|
136
136
|
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/SynchronizationId__c/CustomObject::1
|
@@ -143,7 +143,7 @@ http_interactions:
|
|
143
143
|
Content-Type:
|
144
144
|
- application/json
|
145
145
|
Authorization:
|
146
|
-
- OAuth 00D1a000000H3O9!
|
146
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
147
147
|
Accept-Encoding:
|
148
148
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
149
149
|
Accept:
|
@@ -154,28 +154,28 @@ http_interactions:
|
|
154
154
|
message: Created
|
155
155
|
headers:
|
156
156
|
Date:
|
157
|
-
-
|
157
|
+
- Fri, 26 Jun 2015 20:00:23 GMT
|
158
158
|
Set-Cookie:
|
159
|
-
- BrowserId=
|
160
|
-
|
159
|
+
- BrowserId=8uawp5pnQBumpVBU9Italw;Path=/;Domain=.salesforce.com;Expires=Tue,
|
160
|
+
25-Aug-2015 20:00:23 GMT
|
161
161
|
Expires:
|
162
162
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
163
163
|
Sforce-Limit-Info:
|
164
|
-
- api-usage=
|
164
|
+
- api-usage=591/15000
|
165
165
|
Location:
|
166
|
-
- "/services/data/<api_version>/sobjects/CustomObject__c/
|
166
|
+
- "/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ"
|
167
167
|
Content-Type:
|
168
168
|
- application/json;charset=UTF-8
|
169
169
|
Transfer-Encoding:
|
170
170
|
- chunked
|
171
171
|
body:
|
172
172
|
encoding: UTF-8
|
173
|
-
string: '{"id":"
|
173
|
+
string: '{"id":"a001a000002zl6XAAQ","success":true,"errors":[]}'
|
174
174
|
http_version:
|
175
|
-
recorded_at:
|
175
|
+
recorded_at: Fri, 26 Jun 2015 20:00:24 GMT
|
176
176
|
- request:
|
177
177
|
method: get
|
178
|
-
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20Id%20=%20%
|
178
|
+
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SynchronizationId__c,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20Id%20=%20%27a001a000002zl6XAAQ%27
|
179
179
|
body:
|
180
180
|
encoding: US-ASCII
|
181
181
|
string: ''
|
@@ -183,7 +183,7 @@ http_interactions:
|
|
183
183
|
User-Agent:
|
184
184
|
- Faraday v0.9.1
|
185
185
|
Authorization:
|
186
|
-
- OAuth 00D1a000000H3O9!
|
186
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
187
187
|
Accept-Encoding:
|
188
188
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
189
189
|
Accept:
|
@@ -194,26 +194,62 @@ http_interactions:
|
|
194
194
|
message: OK
|
195
195
|
headers:
|
196
196
|
Date:
|
197
|
-
-
|
197
|
+
- Fri, 26 Jun 2015 20:00:25 GMT
|
198
198
|
Set-Cookie:
|
199
|
-
- BrowserId=
|
200
|
-
|
199
|
+
- BrowserId=zvI0tsVOS727l2QWMh3HtQ;Path=/;Domain=.salesforce.com;Expires=Tue,
|
200
|
+
25-Aug-2015 20:00:25 GMT
|
201
201
|
Expires:
|
202
202
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
203
203
|
Sforce-Limit-Info:
|
204
|
-
- api-usage=
|
204
|
+
- api-usage=594/15000
|
205
205
|
Content-Type:
|
206
206
|
- application/json;charset=UTF-8
|
207
207
|
Transfer-Encoding:
|
208
208
|
- chunked
|
209
209
|
body:
|
210
210
|
encoding: ASCII-8BIT
|
211
|
-
string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"CustomObject__c","url":"/services/data/<api_version>/sobjects/CustomObject__c/
|
211
|
+
string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"CustomObject__c","url":"/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ"},"Id":"a001a000002zl6XAAQ","SynchronizationId__c":"CustomObject::1","SystemModstamp":"2015-06-26T20:00:24.000+0000","LastModifiedById":"0051a000000UGT8AAO","Name":"a001a000002zl6X","Example_Field__c":null}]}'
|
212
212
|
http_version:
|
213
|
-
recorded_at:
|
213
|
+
recorded_at: Fri, 26 Jun 2015 20:00:25 GMT
|
214
|
+
- request:
|
215
|
+
method: patch
|
216
|
+
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ
|
217
|
+
body:
|
218
|
+
encoding: UTF-8
|
219
|
+
string: '{"SynchronizationId__c":null}'
|
220
|
+
headers:
|
221
|
+
User-Agent:
|
222
|
+
- Faraday v0.9.1
|
223
|
+
Content-Type:
|
224
|
+
- application/json
|
225
|
+
Authorization:
|
226
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
227
|
+
Accept-Encoding:
|
228
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
229
|
+
Accept:
|
230
|
+
- "*/*"
|
231
|
+
response:
|
232
|
+
status:
|
233
|
+
code: 204
|
234
|
+
message: No Content
|
235
|
+
headers:
|
236
|
+
Date:
|
237
|
+
- Fri, 26 Jun 2015 20:00:26 GMT
|
238
|
+
Set-Cookie:
|
239
|
+
- BrowserId=mYZ_ELLwTeOCqALmBJGvaw;Path=/;Domain=.salesforce.com;Expires=Tue,
|
240
|
+
25-Aug-2015 20:00:26 GMT
|
241
|
+
Expires:
|
242
|
+
- Thu, 01 Jan 1970 00:00:00 GMT
|
243
|
+
Sforce-Limit-Info:
|
244
|
+
- api-usage=591/15000
|
245
|
+
body:
|
246
|
+
encoding: UTF-8
|
247
|
+
string: ''
|
248
|
+
http_version:
|
249
|
+
recorded_at: Fri, 26 Jun 2015 20:00:26 GMT
|
214
250
|
- request:
|
215
251
|
method: get
|
216
|
-
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20Id%20=%20%
|
252
|
+
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SynchronizationId__c,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20Id%20=%20%27a001a000002zl6XAAQ%27
|
217
253
|
body:
|
218
254
|
encoding: US-ASCII
|
219
255
|
string: ''
|
@@ -221,7 +257,7 @@ http_interactions:
|
|
221
257
|
User-Agent:
|
222
258
|
- Faraday v0.9.1
|
223
259
|
Authorization:
|
224
|
-
- OAuth 00D1a000000H3O9!
|
260
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
225
261
|
Accept-Encoding:
|
226
262
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
227
263
|
Accept:
|
@@ -232,26 +268,26 @@ http_interactions:
|
|
232
268
|
message: OK
|
233
269
|
headers:
|
234
270
|
Date:
|
235
|
-
-
|
271
|
+
- Fri, 26 Jun 2015 20:00:27 GMT
|
236
272
|
Set-Cookie:
|
237
|
-
- BrowserId=
|
238
|
-
|
273
|
+
- BrowserId=iVLZueDeTQywcOIXVKUqhQ;Path=/;Domain=.salesforce.com;Expires=Tue,
|
274
|
+
25-Aug-2015 20:00:27 GMT
|
239
275
|
Expires:
|
240
276
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
241
277
|
Sforce-Limit-Info:
|
242
|
-
- api-usage=
|
278
|
+
- api-usage=591/15000
|
243
279
|
Content-Type:
|
244
280
|
- application/json;charset=UTF-8
|
245
281
|
Transfer-Encoding:
|
246
282
|
- chunked
|
247
283
|
body:
|
248
284
|
encoding: ASCII-8BIT
|
249
|
-
string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"CustomObject__c","url":"/services/data/<api_version>/sobjects/CustomObject__c/
|
285
|
+
string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"CustomObject__c","url":"/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ"},"Id":"a001a000002zl6XAAQ","SynchronizationId__c":null,"SystemModstamp":"2015-06-26T20:00:26.000+0000","LastModifiedById":"0051a000000UGT8AAO","Name":"a001a000002zl6X","Example_Field__c":null}]}'
|
250
286
|
http_version:
|
251
|
-
recorded_at:
|
287
|
+
recorded_at: Fri, 26 Jun 2015 20:00:27 GMT
|
252
288
|
- request:
|
253
289
|
method: patch
|
254
|
-
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/
|
290
|
+
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ
|
255
291
|
body:
|
256
292
|
encoding: UTF-8
|
257
293
|
string: '{"Name":"A Stale Synchronized Name"}'
|
@@ -261,7 +297,7 @@ http_interactions:
|
|
261
297
|
Content-Type:
|
262
298
|
- application/json
|
263
299
|
Authorization:
|
264
|
-
- OAuth 00D1a000000H3O9!
|
300
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
265
301
|
Accept-Encoding:
|
266
302
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
267
303
|
Accept:
|
@@ -272,22 +308,22 @@ http_interactions:
|
|
272
308
|
message: No Content
|
273
309
|
headers:
|
274
310
|
Date:
|
275
|
-
-
|
311
|
+
- Fri, 26 Jun 2015 20:00:28 GMT
|
276
312
|
Set-Cookie:
|
277
|
-
- BrowserId=
|
278
|
-
|
313
|
+
- BrowserId=4qu_PwWeTdWVJxM18I0GvA;Path=/;Domain=.salesforce.com;Expires=Tue,
|
314
|
+
25-Aug-2015 20:00:28 GMT
|
279
315
|
Expires:
|
280
316
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
281
317
|
Sforce-Limit-Info:
|
282
|
-
- api-usage=
|
318
|
+
- api-usage=592/15000
|
283
319
|
body:
|
284
320
|
encoding: UTF-8
|
285
321
|
string: ''
|
286
322
|
http_version:
|
287
|
-
recorded_at:
|
323
|
+
recorded_at: Fri, 26 Jun 2015 20:00:28 GMT
|
288
324
|
- request:
|
289
325
|
method: get
|
290
|
-
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20SystemModstamp%20%3C%202015-06-
|
326
|
+
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SynchronizationId__c,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20SystemModstamp%20%3C%202015-06-26T20:00:29Z%20and%20SystemModstamp%20%3E=%202015-06-26T20:00:19Z
|
291
327
|
body:
|
292
328
|
encoding: US-ASCII
|
293
329
|
string: ''
|
@@ -295,7 +331,7 @@ http_interactions:
|
|
295
331
|
User-Agent:
|
296
332
|
- Faraday v0.9.1
|
297
333
|
Authorization:
|
298
|
-
- OAuth 00D1a000000H3O9!
|
334
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
299
335
|
Accept-Encoding:
|
300
336
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
301
337
|
Accept:
|
@@ -306,26 +342,27 @@ http_interactions:
|
|
306
342
|
message: OK
|
307
343
|
headers:
|
308
344
|
Date:
|
309
|
-
-
|
345
|
+
- Fri, 26 Jun 2015 20:00:30 GMT
|
310
346
|
Set-Cookie:
|
311
|
-
- BrowserId=
|
312
|
-
|
347
|
+
- BrowserId=U7dXhlIkQi-FdWKV3GWtQQ;Path=/;Domain=.salesforce.com;Expires=Tue,
|
348
|
+
25-Aug-2015 20:00:30 GMT
|
313
349
|
Expires:
|
314
350
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
315
351
|
Sforce-Limit-Info:
|
316
|
-
- api-usage=
|
352
|
+
- api-usage=593/15000
|
317
353
|
Content-Type:
|
318
354
|
- application/json;charset=UTF-8
|
319
355
|
Transfer-Encoding:
|
320
356
|
- chunked
|
321
357
|
body:
|
322
358
|
encoding: ASCII-8BIT
|
323
|
-
string: '{"totalSize":
|
359
|
+
string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"CustomObject__c","url":"/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ"},"Id":"a001a000002zl6XAAQ","SynchronizationId__c":null,"SystemModstamp":"2015-06-26T20:00:28.000+0000","LastModifiedById":"0051a000000UGT8AAO","Name":"A
|
360
|
+
Stale Synchronized Name","Example_Field__c":null}]}'
|
324
361
|
http_version:
|
325
|
-
recorded_at:
|
362
|
+
recorded_at: Fri, 26 Jun 2015 20:00:30 GMT
|
326
363
|
- request:
|
327
364
|
method: get
|
328
|
-
uri: https://<host>/services/data/<api_version>/
|
365
|
+
uri: https://<host>/services/data/<api_version>/
|
329
366
|
body:
|
330
367
|
encoding: US-ASCII
|
331
368
|
string: ''
|
@@ -333,7 +370,7 @@ http_interactions:
|
|
333
370
|
User-Agent:
|
334
371
|
- Faraday v0.9.1
|
335
372
|
Authorization:
|
336
|
-
- OAuth 00D1a000000H3O9!
|
373
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
337
374
|
Accept-Encoding:
|
338
375
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
339
376
|
Accept:
|
@@ -344,27 +381,26 @@ http_interactions:
|
|
344
381
|
message: OK
|
345
382
|
headers:
|
346
383
|
Date:
|
347
|
-
-
|
384
|
+
- Fri, 26 Jun 2015 20:00:31 GMT
|
348
385
|
Set-Cookie:
|
349
|
-
- BrowserId=
|
350
|
-
|
386
|
+
- BrowserId=HcMwwcX1S9qZ_VeMDjz5sA;Path=/;Domain=.salesforce.com;Expires=Tue,
|
387
|
+
25-Aug-2015 20:00:31 GMT
|
351
388
|
Expires:
|
352
389
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
353
390
|
Sforce-Limit-Info:
|
354
|
-
- api-usage=
|
391
|
+
- api-usage=591/15000
|
355
392
|
Content-Type:
|
356
393
|
- application/json;charset=UTF-8
|
357
394
|
Transfer-Encoding:
|
358
395
|
- chunked
|
359
396
|
body:
|
360
397
|
encoding: ASCII-8BIT
|
361
|
-
string: '{"
|
362
|
-
Stale Synchronized Name","Example_Field__c":null}]}'
|
398
|
+
string: '{"limits":"/services/data/<api_version>/limits","sobjects":"/services/data/<api_version>/sobjects","connect":"/services/data/<api_version>/connect","query":"/services/data/<api_version>/query","theme":"/services/data/<api_version>/theme","queryAll":"/services/data/<api_version>/queryAll","tooling":"/services/data/<api_version>/tooling","chatter":"/services/data/<api_version>/chatter","analytics":"/services/data/<api_version>/analytics","recent":"/services/data/<api_version>/recent","commerce":"/services/data/<api_version>/commerce","licensing":"/services/data/<api_version>/licensing","identity":"https://login.salesforce.com/id/00D1a000000H3O9EAK/0051a000000UGT8AAO","flexiPage":"/services/data/<api_version>/flexiPage","search":"/services/data/<api_version>/search","quickActions":"/services/data/<api_version>/quickActions","wave":"/services/data/<api_version>/wave","appMenu":"/services/data/<api_version>/appMenu"}'
|
363
399
|
http_version:
|
364
|
-
recorded_at:
|
400
|
+
recorded_at: Fri, 26 Jun 2015 20:00:31 GMT
|
365
401
|
- request:
|
366
402
|
method: get
|
367
|
-
uri: https
|
403
|
+
uri: https://login.salesforce.com/id/00D1a000000H3O9EAK/0051a000000UGT8AAO
|
368
404
|
body:
|
369
405
|
encoding: US-ASCII
|
370
406
|
string: ''
|
@@ -372,7 +408,7 @@ http_interactions:
|
|
372
408
|
User-Agent:
|
373
409
|
- Faraday v0.9.1
|
374
410
|
Authorization:
|
375
|
-
- OAuth 00D1a000000H3O9!
|
411
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
376
412
|
Accept-Encoding:
|
377
413
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
378
414
|
Accept:
|
@@ -383,26 +419,26 @@ http_interactions:
|
|
383
419
|
message: OK
|
384
420
|
headers:
|
385
421
|
Date:
|
386
|
-
-
|
422
|
+
- Fri, 26 Jun 2015 20:00:31 GMT
|
423
|
+
- Fri, 26 Jun 2015 20:00:31 GMT
|
387
424
|
Set-Cookie:
|
388
|
-
- BrowserId=
|
389
|
-
|
425
|
+
- BrowserId=148RBtf6TF2MJtxn6Iv8kQ;Path=/;Domain=.salesforce.com;Expires=Tue,
|
426
|
+
25-Aug-2015 20:00:31 GMT
|
390
427
|
Expires:
|
391
428
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
392
|
-
Sforce-Limit-Info:
|
393
|
-
- api-usage=42/15000
|
394
429
|
Content-Type:
|
395
430
|
- application/json;charset=UTF-8
|
396
431
|
Transfer-Encoding:
|
397
432
|
- chunked
|
398
433
|
body:
|
399
434
|
encoding: ASCII-8BIT
|
400
|
-
string: '{"
|
435
|
+
string: '{"id":"https://login.salesforce.com/id/00D1a000000H3O9EAK/0051a000000UGT8AAO","asserted_user":true,"user_id":"0051a000000UGT8AAO","organization_id":"00D1a000000H3O9EAK","username":"andrew+salesforce@tablexi.com","nick_name":"andrew+salesforce1.42656567106328E12","display_name":"Andrew
|
436
|
+
Horner","email":"andrew@tablexi.com","email_verified":true,"first_name":"Andrew","last_name":"Horner","timezone":"America/Los_Angeles","photos":{"picture":"https://c.na24.content.force.com/profilephoto/005/F","thumbnail":"https://c.na24.content.force.com/profilephoto/005/T"},"addr_street":null,"addr_city":null,"addr_state":null,"addr_country":"US","addr_zip":"60661","mobile_phone":null,"mobile_phone_verified":false,"status":{"created_date":null,"body":null},"urls":{"enterprise":"https://<host>/services/Soap/c/{version}/00D1a000000H3O9","metadata":"https://<host>/services/Soap/m/{version}/00D1a000000H3O9","partner":"https://<host>/services/Soap/u/{version}/00D1a000000H3O9","rest":"https://<host>/services/data/v{version}/","sobjects":"https://<host>/services/data/v{version}/sobjects/","search":"https://<host>/services/data/v{version}/search/","query":"https://<host>/services/data/v{version}/query/","recent":"https://<host>/services/data/v{version}/recent/","profile":"https://<host>/0051a000000UGT8AAO","feeds":"https://<host>/services/data/v{version}/chatter/feeds","groups":"https://<host>/services/data/v{version}/chatter/groups","users":"https://<host>/services/data/v{version}/chatter/users","feed_items":"https://<host>/services/data/v{version}/chatter/feed-items"},"active":true,"user_type":"STANDARD","language":"en_US","locale":"en_US","utcOffset":-28800000,"last_modified_date":"2015-03-17T04:14:23.000+0000","is_app_installed":true}'
|
401
437
|
http_version:
|
402
|
-
recorded_at:
|
438
|
+
recorded_at: Fri, 26 Jun 2015 20:00:31 GMT
|
403
439
|
- request:
|
404
440
|
method: get
|
405
|
-
uri: https
|
441
|
+
uri: https://<host>/services/data/<api_version>/query?q=select%20Id,%20SynchronizationId__c,%20SystemModstamp,%20LastModifiedById,%20Name,%20Example_Field__c%20from%20CustomObject__c%20where%20Id%20=%20%27a001a000002zl6XAAQ%27
|
406
442
|
body:
|
407
443
|
encoding: US-ASCII
|
408
444
|
string: ''
|
@@ -410,7 +446,7 @@ http_interactions:
|
|
410
446
|
User-Agent:
|
411
447
|
- Faraday v0.9.1
|
412
448
|
Authorization:
|
413
|
-
- OAuth 00D1a000000H3O9!
|
449
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
414
450
|
Accept-Encoding:
|
415
451
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
416
452
|
Accept:
|
@@ -421,26 +457,27 @@ http_interactions:
|
|
421
457
|
message: OK
|
422
458
|
headers:
|
423
459
|
Date:
|
424
|
-
-
|
425
|
-
- Wed, 24 Jun 2015 18:35:48 GMT
|
460
|
+
- Fri, 26 Jun 2015 20:00:32 GMT
|
426
461
|
Set-Cookie:
|
427
|
-
- BrowserId=
|
428
|
-
|
462
|
+
- BrowserId=5sO9C7EKRlC80r_LlsNJgw;Path=/;Domain=.salesforce.com;Expires=Tue,
|
463
|
+
25-Aug-2015 20:00:32 GMT
|
429
464
|
Expires:
|
430
465
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
466
|
+
Sforce-Limit-Info:
|
467
|
+
- api-usage=591/15000
|
431
468
|
Content-Type:
|
432
469
|
- application/json;charset=UTF-8
|
433
470
|
Transfer-Encoding:
|
434
471
|
- chunked
|
435
472
|
body:
|
436
473
|
encoding: ASCII-8BIT
|
437
|
-
string: '{"
|
438
|
-
|
474
|
+
string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"CustomObject__c","url":"/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ"},"Id":"a001a000002zl6XAAQ","SynchronizationId__c":null,"SystemModstamp":"2015-06-26T20:00:28.000+0000","LastModifiedById":"0051a000000UGT8AAO","Name":"A
|
475
|
+
Stale Synchronized Name","Example_Field__c":null}]}'
|
439
476
|
http_version:
|
440
|
-
recorded_at:
|
477
|
+
recorded_at: Fri, 26 Jun 2015 20:00:32 GMT
|
441
478
|
- request:
|
442
479
|
method: patch
|
443
|
-
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/
|
480
|
+
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ
|
444
481
|
body:
|
445
482
|
encoding: UTF-8
|
446
483
|
string: '{"Name":"A New User-Entered Name","Example_Field__c":null}'
|
@@ -450,7 +487,7 @@ http_interactions:
|
|
450
487
|
Content-Type:
|
451
488
|
- application/json
|
452
489
|
Authorization:
|
453
|
-
- OAuth 00D1a000000H3O9!
|
490
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
454
491
|
Accept-Encoding:
|
455
492
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
456
493
|
Accept:
|
@@ -461,22 +498,22 @@ http_interactions:
|
|
461
498
|
message: No Content
|
462
499
|
headers:
|
463
500
|
Date:
|
464
|
-
-
|
501
|
+
- Fri, 26 Jun 2015 20:00:33 GMT
|
465
502
|
Set-Cookie:
|
466
|
-
- BrowserId=
|
467
|
-
|
503
|
+
- BrowserId=vxxGnbMzS4WQWSR2ksa8Eg;Path=/;Domain=.salesforce.com;Expires=Tue,
|
504
|
+
25-Aug-2015 20:00:33 GMT
|
468
505
|
Expires:
|
469
506
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
470
507
|
Sforce-Limit-Info:
|
471
|
-
- api-usage=
|
508
|
+
- api-usage=593/15000
|
472
509
|
body:
|
473
510
|
encoding: UTF-8
|
474
511
|
string: ''
|
475
512
|
http_version:
|
476
|
-
recorded_at:
|
513
|
+
recorded_at: Fri, 26 Jun 2015 20:00:33 GMT
|
477
514
|
- request:
|
478
515
|
method: delete
|
479
|
-
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/
|
516
|
+
uri: https://<host>/services/data/<api_version>/sobjects/CustomObject__c/a001a000002zl6XAAQ
|
480
517
|
body:
|
481
518
|
encoding: US-ASCII
|
482
519
|
string: ''
|
@@ -484,7 +521,7 @@ http_interactions:
|
|
484
521
|
User-Agent:
|
485
522
|
- Faraday v0.9.1
|
486
523
|
Authorization:
|
487
|
-
- OAuth 00D1a000000H3O9!
|
524
|
+
- OAuth 00D1a000000H3O9!AQ4AQBPmUB0jG__CiIfWEBZ.RUTVVJm_WreLssta.gEq1gtlj_BSyYQminxMfJ6g2GW08.1Chcd.coP0_KTpj3WhU_NUATWs
|
488
525
|
Accept-Encoding:
|
489
526
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
490
527
|
Accept:
|
@@ -495,17 +532,17 @@ http_interactions:
|
|
495
532
|
message: No Content
|
496
533
|
headers:
|
497
534
|
Date:
|
498
|
-
-
|
535
|
+
- Fri, 26 Jun 2015 20:00:34 GMT
|
499
536
|
Set-Cookie:
|
500
|
-
- BrowserId=
|
501
|
-
|
537
|
+
- BrowserId=H2DNHEd-QU-4vLcNvCUcpw;Path=/;Domain=.salesforce.com;Expires=Tue,
|
538
|
+
25-Aug-2015 20:00:34 GMT
|
502
539
|
Expires:
|
503
540
|
- Thu, 01 Jan 1970 00:00:00 GMT
|
504
541
|
Sforce-Limit-Info:
|
505
|
-
- api-usage=
|
542
|
+
- api-usage=593/15000
|
506
543
|
body:
|
507
544
|
encoding: UTF-8
|
508
545
|
string: ''
|
509
546
|
http_version:
|
510
|
-
recorded_at:
|
547
|
+
recorded_at: Fri, 26 Jun 2015 20:00:34 GMT
|
511
548
|
recorded_with: VCR 2.9.3
|