salesforce_core 0.13.6

Unofficial Rust SDK for Salesforce Core APIs (Sales, Service, Platform)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
//! Composite API operations for bulk record operations.
//!
//! The Composite API allows you to:
//! - Create up to 200 records in a single request
//! - Retrieve up to 2000 records in a single request
//! - Update up to 200 records in a single request
//! - Upsert up to 200 records in a single request
//! - Delete up to 200 records in a single request
//! - Create record trees with parent-child relationships

use super::Client;
use salesforce_core_restapi::types::{
    CompositeCollectionCreateRequest, CompositeCollectionCreateResponse,
    CompositeCollectionRetrieveRequest, CompositeCollectionUpdateRequest,
    CompositeCollectionUpdateResponse, CompositeCollectionUpsertRequest,
    CompositeCollectionUpsertResponse, CompositeTreeRequest, CompositeTreeResponse,
};
use salesforce_core_restapi::{Client as GeneratedClient, Error as GeneratedError};
use serde_json::Value;

/// Error type for Composite API operations.
#[derive(thiserror::Error, Debug)]
#[non_exhaustive]
pub enum Error {
    /// Authentication error.
    #[error("Authentication error: {source}")]
    Auth {
        /// The underlying authentication error.
        #[source]
        source: crate::client::Error,
    },

    /// Error from the Salesforce Composite API.
    #[error("Salesforce Composite API error: {source}")]
    CompositeApi {
        /// The underlying API error.
        #[source]
        source: GeneratedError<salesforce_core_restapi::types::ErrorResponse>,
    },

    /// Error serializing request data.
    #[error("Failed to serialize request: {source}")]
    Serde {
        /// The underlying serde error.
        #[source]
        source: serde_json::Error,
    },

    /// Error building HTTP client.
    #[error("Failed to build HTTP client: {source}")]
    HttpClient {
        /// The underlying HTTP client error.
        #[source]
        source: crate::http::Error,
    },
}

impl Client {
    /// Creates multiple records in a single request (up to 200 records).
    ///
    /// Records can be of different SObject types. Each record must include an
    /// `attributes` object with a `type` field specifying the SObject type.
    ///
    /// # Arguments
    ///
    /// * `request` - The create request with records and `allOrNone` flag
    ///
    /// # Returns
    ///
    /// A vector of results, one for each record in the same order as the request.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use salesforce_core::client::{self, Credentials};
    /// use salesforce_core::restapi::{self, CompositeCollectionCreateRequest, CompositeRecordRequest};
    /// use serde_json::json;
    ///
    /// # #[tokio::main]
    /// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth_client = client::Builder::new()
    /// #     .credentials(Credentials {
    /// #         client_id: "...".to_string(),
    /// #         client_secret: Some("...".to_string()),
    /// #         username: None,
    /// #         password: None,
    /// #         instance_url: "https://localhost".to_string(),
    /// #         tenant_id: "...".to_string(),
    /// #     })
    /// #     .build()?
    /// #     .connect()
    /// #     .await?;
    /// let rest_client = restapi::ClientBuilder::new(auth_client).build()?;
    ///
    /// use salesforce_core_restapi::types::{CompositeRecordRequest, CompositeRecordRequestAttributes};
    ///
    /// let mut account_record = CompositeRecordRequest {
    ///     attributes: CompositeRecordRequestAttributes {
    ///         type_: "Account".to_string(),
    ///         reference_id: None,
    ///     },
    ///     extra: serde_json::Map::new(),
    /// };
    /// account_record.extra.insert("Name".to_string(), json!("Acme Corp"));
    /// account_record.extra.insert("Industry".to_string(), json!("Technology"));
    ///
    /// let mut contact_record = CompositeRecordRequest {
    ///     attributes: CompositeRecordRequestAttributes {
    ///         type_: "Contact".to_string(),
    ///         reference_id: None,
    ///     },
    ///     extra: serde_json::Map::new(),
    /// };
    /// contact_record.extra.insert("FirstName".to_string(), json!("John"));
    /// contact_record.extra.insert("LastName".to_string(), json!("Doe"));
    ///
    /// let request = CompositeCollectionCreateRequest {
    ///     all_or_none: false,
    ///     records: vec![account_record, contact_record],
    /// };
    ///
    /// let results = rest_client.composite().create_records(&request).await?;
    /// for result in results.iter() {
    ///     if result.success {
    ///         if let Some(id) = &result.id {
    ///             println!("Created record: {}", id);
    ///         }
    ///     }
    /// }
    /// # Ok(())
    /// # }
    /// ```
    pub async fn create_records(
        &self,
        request: &CompositeCollectionCreateRequest,
    ) -> Result<CompositeCollectionCreateResponse, Error> {
        let http_client = self
            .get_http_client()
            .await
            .map_err(|source| Error::HttpClient { source })?;

        let base_url = self.base_url().map_err(|source| Error::Auth { source })?;
        let client = GeneratedClient::new_with_client(&base_url, http_client);

        let response = client
            .create_records(request)
            .await
            .map_err(|source| Error::CompositeApi { source })?;

        Ok(response.into_inner())
    }

    /// Retrieves multiple records by ID in a single request (up to 2000 IDs).
    ///
    /// All records must be of the same SObject type. You can optionally specify
    /// which fields to retrieve for each record.
    ///
    /// # Arguments
    ///
    /// * `sobject_type` - The API name of the SObject type
    /// * `request` - The retrieve request with IDs and optional fields
    ///
    /// # Returns
    ///
    /// A vector of records with the requested fields.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use salesforce_core::client::{self, Credentials};
    /// use salesforce_core::restapi::{self, CompositeCollectionRetrieveRequest};
    ///
    /// # #[tokio::main]
    /// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth_client = client::Builder::new()
    /// #     .credentials(Credentials {
    /// #         client_id: "...".to_string(),
    /// #         client_secret: Some("...".to_string()),
    /// #         username: None,
    /// #         password: None,
    /// #         instance_url: "https://localhost".to_string(),
    /// #         tenant_id: "...".to_string(),
    /// #     })
    /// #     .build()?
    /// #     .connect()
    /// #     .await?;
    /// let rest_client = restapi::ClientBuilder::new(auth_client).build()?;
    ///
    /// let request = CompositeCollectionRetrieveRequest {
    ///     ids: vec![
    ///         "001xx000003DGb2AAG".to_string(),
    ///         "001xx000003DGb3AAG".to_string(),
    ///     ],
    ///     fields: vec!["Id".to_string(), "Name".to_string(), "Industry".to_string()],
    /// };
    ///
    /// let records = rest_client.composite().get_records("Account", &request).await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn get_records(
        &self,
        sobject_type: impl AsRef<str>,
        request: &CompositeCollectionRetrieveRequest,
    ) -> Result<Vec<serde_json::Map<String, Value>>, Error> {
        let http_client = self
            .get_http_client()
            .await
            .map_err(|source| Error::HttpClient { source })?;

        let base_url = self.base_url().map_err(|source| Error::Auth { source })?;
        let client = GeneratedClient::new_with_client(&base_url, http_client);

        let response = client
            .get_records(sobject_type.as_ref(), request)
            .await
            .map_err(|source| Error::CompositeApi { source })?;

        Ok(response.into_inner())
    }

    /// Updates multiple records in a single request (up to 200 records).
    ///
    /// Records can be of different SObject types. Each record must include an
    /// `attributes` object with a `type` field and an `id` field.
    ///
    /// # Arguments
    ///
    /// * `request` - The update request with records and `allOrNone` flag
    ///
    /// # Returns
    ///
    /// A vector of results, one for each record in the same order as the request.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use salesforce_core::client::{self, Credentials};
    /// use salesforce_core::restapi::{self, CompositeCollectionUpdateRequest};
    /// use serde_json::json;
    ///
    /// # #[tokio::main]
    /// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth_client = client::Builder::new()
    /// #     .credentials(Credentials {
    /// #         client_id: "...".to_string(),
    /// #         client_secret: Some("...".to_string()),
    /// #         username: None,
    /// #         password: None,
    /// #         instance_url: "https://localhost".to_string(),
    /// #         tenant_id: "...".to_string(),
    /// #     })
    /// #     .build()?
    /// #     .connect()
    /// #     .await?;
    /// let rest_client = restapi::ClientBuilder::new(auth_client).build()?;
    ///
    /// use salesforce_core_restapi::types::{
    ///     CompositeCollectionUpdateRequestRecordsItem,
    ///     CompositeCollectionUpdateRequestRecordsItemAttributes,
    /// };
    ///
    /// let mut update_record = CompositeCollectionUpdateRequestRecordsItem {
    ///     attributes: CompositeCollectionUpdateRequestRecordsItemAttributes {
    ///         type_: "Account".to_string(),
    ///     },
    ///     id: "001xx000003DGb2AAG".to_string(),
    ///     extra: serde_json::Map::new(),
    /// };
    /// update_record.extra.insert("Industry".to_string(), json!("Manufacturing"));
    ///
    /// let request = CompositeCollectionUpdateRequest {
    ///     all_or_none: false,
    ///     records: vec![update_record],
    /// };
    ///
    /// let results = rest_client.composite().update_records(&request).await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn update_records(
        &self,
        request: &CompositeCollectionUpdateRequest,
    ) -> Result<CompositeCollectionUpdateResponse, Error> {
        let http_client = self
            .get_http_client()
            .await
            .map_err(|source| Error::HttpClient { source })?;

        let base_url = self.base_url().map_err(|source| Error::Auth { source })?;
        let client = GeneratedClient::new_with_client(&base_url, http_client);

        let response = client
            .update_records(request)
            .await
            .map_err(|source| Error::CompositeApi { source })?;

        Ok(response.into_inner())
    }

    /// Upserts multiple records in a single request (up to 200 records).
    ///
    /// Creates new records or updates existing records based on an external ID field.
    /// All records must be of the same SObject type.
    ///
    /// # Arguments
    ///
    /// * `sobject_type` - The API name of the SObject type
    /// * `external_id_field` - The API name of the external ID field
    /// * `request` - The upsert request with records and `allOrNone` flag
    ///
    /// # Returns
    ///
    /// A vector of results indicating whether each record was created or updated.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use salesforce_core::client::{self, Credentials};
    /// use salesforce_core::restapi::{self, CompositeCollectionUpsertRequest};
    /// use serde_json::json;
    ///
    /// # #[tokio::main]
    /// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth_client = client::Builder::new()
    /// #     .credentials(Credentials {
    /// #         client_id: "...".to_string(),
    /// #         client_secret: Some("...".to_string()),
    /// #         username: None,
    /// #         password: None,
    /// #         instance_url: "https://localhost".to_string(),
    /// #         tenant_id: "...".to_string(),
    /// #     })
    /// #     .build()?
    /// #     .connect()
    /// #     .await?;
    /// let rest_client = restapi::ClientBuilder::new(auth_client).build()?;
    ///
    /// use salesforce_core_restapi::types::{
    ///     CompositeCollectionUpsertRequestRecordsItem,
    ///     CompositeCollectionUpsertRequestRecordsItemAttributes,
    /// };
    ///
    /// let mut upsert_record = CompositeCollectionUpsertRequestRecordsItem {
    ///     attributes: CompositeCollectionUpsertRequestRecordsItemAttributes {
    ///         type_: "Account".to_string(),
    ///     },
    ///     extra: serde_json::Map::new(),
    /// };
    /// upsert_record.extra.insert("ExternalId__c".to_string(), json!("EXT-001"));
    /// upsert_record.extra.insert("Name".to_string(), json!("Acme Corp"));
    ///
    /// let request = CompositeCollectionUpsertRequest {
    ///     all_or_none: false,
    ///     records: vec![upsert_record],
    /// };
    ///
    /// let results = rest_client
    ///     .composite()
    ///     .upsert_records("Account", "ExternalId__c", &request)
    ///     .await?;
    ///
    /// for result in results.iter() {
    ///     if result.success {
    ///         if let Some(id) = &result.id {
    ///             if result.created {
    ///                 println!("Created record: {}", id);
    ///             } else {
    ///                 println!("Updated record: {}", id);
    ///             }
    ///         }
    ///     }
    /// }
    /// # Ok(())
    /// # }
    /// ```
    pub async fn upsert_records(
        &self,
        sobject_type: impl AsRef<str>,
        external_id_field: impl AsRef<str>,
        request: &CompositeCollectionUpsertRequest,
    ) -> Result<CompositeCollectionUpsertResponse, Error> {
        let http_client = self
            .get_http_client()
            .await
            .map_err(|source| Error::HttpClient { source })?;

        let base_url = self.base_url().map_err(|source| Error::Auth { source })?;
        let client = GeneratedClient::new_with_client(&base_url, http_client);

        let response = client
            .upsert_records(sobject_type.as_ref(), external_id_field.as_ref(), request)
            .await
            .map_err(|source| Error::CompositeApi { source })?;

        Ok(response.into_inner())
    }

    /// Deletes multiple records in a single request (up to 200 records).
    ///
    /// All records must be of the same SObject type.
    ///
    /// # Arguments
    ///
    /// * `ids` - Comma-separated list of record IDs to delete
    /// * `all_or_none` - If true, rolls back entire request if any record fails
    ///
    /// # Returns
    ///
    /// A vector of results, one for each record in the same order as the IDs.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use salesforce_core::client::{self, Credentials};
    /// use salesforce_core::restapi;
    ///
    /// # #[tokio::main]
    /// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth_client = client::Builder::new()
    /// #     .credentials(Credentials {
    /// #         client_id: "...".to_string(),
    /// #         client_secret: Some("...".to_string()),
    /// #         username: None,
    /// #         password: None,
    /// #         instance_url: "https://localhost".to_string(),
    /// #         tenant_id: "...".to_string(),
    /// #     })
    /// #     .build()?
    /// #     .connect()
    /// #     .await?;
    /// let rest_client = restapi::ClientBuilder::new(auth_client).build()?;
    ///
    /// let ids = "001xx000003DGb2AAG,001xx000003DGb3AAG";
    /// let results = rest_client.composite().delete_records(ids, Some(false)).await?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn delete_records(
        &self,
        ids: impl AsRef<str>,
        all_or_none: Option<bool>,
    ) -> Result<salesforce_core_restapi::types::CompositeCollectionDeleteResponse, Error> {
        let http_client = self
            .get_http_client()
            .await
            .map_err(|source| Error::HttpClient { source })?;

        let base_url = self.base_url().map_err(|source| Error::Auth { source })?;
        let client = GeneratedClient::new_with_client(&base_url, http_client);

        let response = client
            .delete_records(all_or_none, ids.as_ref())
            .await
            .map_err(|source| Error::CompositeApi { source })?;

        Ok(response.into_inner())
    }

    /// Creates a tree of records with parent-child relationships in a single request.
    ///
    /// Up to 200 records total can be created across all levels of the tree.
    /// Each record must have a unique `referenceId` in its `attributes` object.
    ///
    /// # Arguments
    ///
    /// * `sobject_type` - The API name of the parent SObject type
    /// * `request` - The tree request with nested records
    ///
    /// # Returns
    ///
    /// A response indicating which records were created successfully.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use salesforce_core::client::{self, Credentials};
    /// use salesforce_core::restapi::{self, CompositeTreeRequest};
    /// use serde_json::json;
    ///
    /// # #[tokio::main]
    /// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// # let auth_client = client::Builder::new()
    /// #     .credentials(Credentials {
    /// #         client_id: "...".to_string(),
    /// #         client_secret: Some("...".to_string()),
    /// #         username: None,
    /// #         password: None,
    /// #         instance_url: "https://localhost".to_string(),
    /// #         tenant_id: "...".to_string(),
    /// #     })
    /// #     .build()?
    /// #     .connect()
    /// #     .await?;
    /// let rest_client = restapi::ClientBuilder::new(auth_client).build()?;
    ///
    /// use salesforce_core_restapi::types::{CompositeTreeRecord, CompositeTreeRecordAttributes};
    ///
    /// let mut account_tree = CompositeTreeRecord {
    ///     attributes: CompositeTreeRecordAttributes {
    ///         type_: "Account".to_string(),
    ///         reference_id: "ref1".to_string(),
    ///     },
    ///     extra: serde_json::Map::new(),
    /// };
    /// account_tree.extra.insert("Name".to_string(), json!("Acme Corp"));
    /// account_tree.extra.insert("Contacts".to_string(), json!({
    ///     "records": [
    ///         {
    ///             "attributes": {
    ///                 "type": "Contact",
    ///                 "referenceId": "ref2"
    ///             },
    ///             "FirstName": "John",
    ///             "LastName": "Doe"
    ///         }
    ///     ]
    /// }));
    ///
    /// let request = CompositeTreeRequest {
    ///     records: vec![account_tree],
    /// };
    ///
    /// let response = rest_client.composite().create_record_tree("Account", &request).await?;
    /// if !response.has_errors {
    ///     println!("All records created successfully");
    /// }
    /// # Ok(())
    /// # }
    /// ```
    pub async fn create_record_tree(
        &self,
        sobject_type: impl AsRef<str>,
        request: &CompositeTreeRequest,
    ) -> Result<CompositeTreeResponse, Error> {
        let http_client = self
            .get_http_client()
            .await
            .map_err(|source| Error::HttpClient { source })?;

        let base_url = self.base_url().map_err(|source| Error::Auth { source })?;
        let client = GeneratedClient::new_with_client(&base_url, http_client);

        let response = client
            .create_record_tree(sobject_type.as_ref(), request)
            .await
            .map_err(|source| Error::CompositeApi { source })?;

        Ok(response.into_inner())
    }
}