kintone 0.6.2

kintone REST API client
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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
//! # Kintone Record API
//!
//! This module provides functions for interacting with Kintone's record-related REST API endpoints.
//! It includes operations for managing records, comments, assignees, workflow statuses, and cursor-based pagination.
//!
//! ## Available Functions
//!
//! ### Record Operations
//! - [`get_record`] - Retrieve a single record by ID
//! - [`get_records`] - Retrieve multiple records with filtering and pagination
//! - [`add_record`] - Create a new record
//! - [`add_records`] - Create multiple records at once
//! - [`update_record`] - Update an existing record
//! - [`update_records`] - Update multiple records at once
//! - [`delete_records`] - Delete multiple records at once
//! - [`bulk_request`] - Execute multiple API operations atomically
//!
//! ### Comment Operations
//! - [`get_comments`] - Retrieve comments for a record
//! - [`add_comment`] - Add a new comment to a record
//! - [`delete_comment`] - Delete a comment from a record
//!
//! ### Workflow Operations
//! - [`update_assignees`] - Update the assignees of a record
//! - [`update_status`] - Update the workflow status of a record
//!
//! ### Cursor-based Pagination
//! - [`create_cursor`] - Create a cursor for efficient pagination through large datasets
//! - [`get_records_by_cursor`] - Retrieve records using a cursor
//! - [`delete_cursor`] - Delete a cursor to free up resources

use bigdecimal::BigDecimal;
use serde::{Deserialize, Serialize};

use crate::client::{KintoneClient, RequestBuilder};
use crate::error::ApiError;
use crate::internal::serde_helper::{option_stringified, stringified};
use crate::model::{
    Order,
    record::{PostedRecordComment, Record, RecordComment},
};

/// Retrieves a single record from a Kintone app by its ID.
///
/// This function creates a request to get a specific record from the specified app.
/// The record is identified by its unique ID within the app.
///
/// # Arguments
/// * `app` - The ID of the Kintone app
/// * `id` - The ID of the record to retrieve
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let response = kintone::v1::record::get_record(123, 456).send(&client)?;
/// println!("Record: {:?}", response.record);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/get-record/>
pub fn get_record(app: u64, id: u64) -> GetRecordRequest {
    let builder = RequestBuilder::new(http::Method::GET, "/v1/record.json")
        .query("app", app)
        .query("id", id);
    GetRecordRequest { builder }
}

#[must_use]
pub struct GetRecordRequest {
    builder: RequestBuilder,
}

impl GetRecordRequest {
    pub fn send(self, client: &KintoneClient) -> Result<GetRecordResponse, ApiError> {
        self.builder.call(client)
    }
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GetRecordResponse {
    pub record: Record,
}

//-----------------------------------------------------------------------------

/// Retrieves multiple records from a Kintone app with optional filtering and pagination.
///
/// This function creates a request to get records from the specified app. The request
/// can be configured with query conditions, field selection, and pagination options.
///
/// # Arguments
/// * `app` - The ID of the Kintone app to retrieve records from
/// * `fields` (optional) - An array of field codes to include in the response
/// * `query` (optional) - A query string following Kintone's query syntax (e.g., "status = \"Active\" and priority > 3")
/// * `total_count` (optional) - If true, includes the total count; if false, excludes it for better performance
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let response = kintone::v1::record::get_records(123)
///     .query("status = \"Active\"")
///     .fields(&["name", "email", "status"])
///     .send(&client)?;
/// println!("Found {} records", response.records.len());
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/get-records/>
pub fn get_records(app: u64) -> GetRecordsRequest {
    let builder = RequestBuilder::new(http::Method::GET, "/v1/records.json").query("app", app);
    GetRecordsRequest { builder }
}

#[must_use]
pub struct GetRecordsRequest {
    builder: RequestBuilder,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GetRecordsResponse {
    pub records: Vec<Record>,

    #[serde(with = "option_stringified")]
    pub total_count: Option<usize>,
}

impl GetRecordsRequest {
    pub fn fields(mut self, fields: &[&str]) -> Self {
        self.builder = self.builder.query_array("fields", fields);
        self
    }

    pub fn query(mut self, query: &str) -> Self {
        self.builder = self.builder.query("query", query);
        self
    }

    pub fn total_count(mut self, total_count: bool) -> Self {
        self.builder = self.builder.query("totalCount", total_count);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<GetRecordsResponse, ApiError> {
        self.builder.call(client)
    }
}

//-----------------------------------------------------------------------------

/// Creates a new record in a Kintone app.
///
/// This function creates a request to add a new record to the specified app.
/// The record data can be provided using the `record()` method on the returned request.
///
/// # Arguments
/// * `app` - The ID of the Kintone app to add the record to
/// * `record` (optional) - A Record containing the field data for the new record
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// use kintone::model::record::{Record, FieldValue};
/// use bigdecimal::BigDecimal;
///
/// let record = Record::from([
///     ("name", FieldValue::SingleLineText("John Doe".to_owned())),
///     ("age", FieldValue::Number(Some(30.into()))),
/// ]);
///
/// let response = kintone::v1::record::add_record(123)
///     .record(record)
///     .send(&client)?;
/// println!("Created record with ID: {}", response.id);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/add-record/>
pub fn add_record(app: u64) -> AddRecordRequest {
    let builder = RequestBuilder::new(http::Method::POST, "/v1/record.json");
    AddRecordRequest {
        builder,
        body: AddRecordRequestBody { app, record: None },
    }
}

#[must_use]
pub struct AddRecordRequest {
    builder: RequestBuilder,
    pub(crate) body: AddRecordRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct AddRecordRequestBody {
    app: u64,
    record: Option<Record>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AddRecordResponse {
    #[serde(with = "stringified")]
    pub id: u64,
    #[serde(with = "stringified")]
    pub revision: u64,
}

impl AddRecordRequest {
    pub fn record(mut self, record: Record) -> Self {
        self.body.record = Some(record);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<AddRecordResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Creates multiple new records in a Kintone app.
///
/// This function creates a request to add multiple records to the specified app at once.
/// This is more efficient than adding records one by one when you need to create many records.
///
/// # Arguments
/// * `app` - The ID of the Kintone app to add records to
/// * `records` - A vector of Records containing the field data for the new records
///
/// # Limits
/// - Maximum 100 records can be added in a single request
/// - If any record fails, all records in the request are rolled back
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// use kintone::model::record::{Record, FieldValue};
///
/// let records = vec![
///     Record::from([
///         ("name", FieldValue::SingleLineText("Alice".to_owned())),
///         ("age", FieldValue::Number(Some(25.into()))),
///     ]),
///     Record::from([
///         ("name", FieldValue::SingleLineText("Bob".to_owned())),
///         ("age", FieldValue::Number(Some(30.into()))),
///     ]),
/// ];
///
/// let response = kintone::v1::record::add_records(123, records)
///     .send(&client)?;
/// println!("Created {} records", response.ids.len());
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/add-records/>
pub fn add_records(app: u64, records: Vec<Record>) -> AddRecordsRequest {
    let builder = RequestBuilder::new(http::Method::POST, "/v1/records.json");
    AddRecordsRequest {
        builder,
        body: AddRecordsRequestBody { app, records },
    }
}

#[must_use]
pub struct AddRecordsRequest {
    builder: RequestBuilder,
    pub(crate) body: AddRecordsRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct AddRecordsRequestBody {
    app: u64,
    records: Vec<Record>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AddRecordsResponse {
    pub ids: Vec<String>,
    pub revisions: Vec<String>,
}

impl AddRecordsRequest {
    pub fn send(self, client: &KintoneClient) -> Result<AddRecordsResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Updates an existing record in a Kintone app.
///
/// This function creates a request to update a record in the specified app.
/// The record can be identified either by its ID or by a unique key field.
/// Only the fields specified in the record data will be updated.
///
/// # Arguments
/// * `app` - The ID of the Kintone app containing the record to update
/// * `id` (optional) - The ID of the record to update
/// * `update_key` (optional) - A unique key field and value to identify the record to update
/// * `record` (optional) - A Record containing the field data to update (only specified fields will be updated)
/// * `revision` (optional) - The expected revision number of the record to prevent conflicts
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// use kintone::model::record::{Record, FieldValue};
/// use chrono::NaiveDate;
///
/// let record = Record::from([
///     ("status", FieldValue::SingleLineText("Completed".to_owned())),
///     ("completion_date", FieldValue::Date(Some(NaiveDate::from_ymd_opt(2024, 1, 15).unwrap()))),
/// ]);
///
/// let response = kintone::v1::record::update_record(123)
///     .id(456)
///     .record(record)
///     .revision(10)
///     .send(&client)?;
/// println!("Updated to revision: {}", response.revision);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/update-record/>
pub fn update_record(app: u64) -> UpdateRecordRequest {
    let builder = RequestBuilder::new(http::Method::PUT, "/v1/record.json");
    UpdateRecordRequest {
        builder,
        body: UpdateRecordRequestBody {
            app,
            id: None,
            update_key: None,
            record: None,
            revision: None,
        },
    }
}

/// Value type for unique key field updates.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum UpdateKeyValue {
    /// String value for text fields
    String(String),
    /// Numeric value for number fields
    Number(BigDecimal),
}

impl From<String> for UpdateKeyValue {
    fn from(value: String) -> Self {
        UpdateKeyValue::String(value)
    }
}

impl From<&str> for UpdateKeyValue {
    fn from(value: &str) -> Self {
        UpdateKeyValue::String(value.to_string())
    }
}

impl From<BigDecimal> for UpdateKeyValue {
    fn from(value: BigDecimal) -> Self {
        UpdateKeyValue::Number(value)
    }
}

impl From<i64> for UpdateKeyValue {
    fn from(value: i64) -> Self {
        UpdateKeyValue::Number(BigDecimal::from(value))
    }
}

impl From<u64> for UpdateKeyValue {
    fn from(value: u64) -> Self {
        UpdateKeyValue::Number(BigDecimal::from(value))
    }
}

impl From<i32> for UpdateKeyValue {
    fn from(value: i32) -> Self {
        UpdateKeyValue::Number(BigDecimal::from(value))
    }
}

impl From<u32> for UpdateKeyValue {
    fn from(value: u32) -> Self {
        UpdateKeyValue::Number(BigDecimal::from(value))
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateKey {
    pub field: String,
    pub value: UpdateKeyValue,
}

#[must_use]
pub struct UpdateRecordRequest {
    builder: RequestBuilder,
    pub(crate) body: UpdateRecordRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateRecordRequestBody {
    app: u64,
    id: Option<u64>,
    update_key: Option<UpdateKey>,
    record: Option<Record>,
    revision: Option<u64>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateRecordResponse {
    #[serde(with = "stringified")]
    pub revision: u64,
}

impl UpdateRecordRequest {
    pub fn id(mut self, id: u64) -> Self {
        self.body.id = Some(id);
        self
    }

    pub fn update_key(mut self, field: String, value: impl Into<UpdateKeyValue>) -> Self {
        self.body.update_key = Some(UpdateKey {
            field,
            value: value.into(),
        });
        self
    }

    pub fn record(mut self, record: Record) -> Self {
        self.body.record = Some(record);
        self
    }

    pub fn revision(mut self, revision: u64) -> Self {
        self.body.revision = Some(revision);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<UpdateRecordResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Updates multiple existing records in a Kintone app.
///
/// This function creates a request to update multiple records in the specified app at once.
/// Records can be identified either by their ID or by a unique key field. This is more efficient
/// than updating records one by one when you need to modify many records.
///
/// # Arguments
/// * `app` - The ID of the Kintone app containing the records to update
/// * `records` - A vector of UpdateRecordData containing the record update information
///
/// # Limits
/// - Maximum 100 records can be updated in a single request
/// - If any record update fails, all updates in the request are rolled back
/// - UPSERT mode can insert new records if they don't exist
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// use kintone::model::record::{Record, FieldValue};
/// use kintone::v1::record::UpdateRecordData;
///
/// let updates = vec![
///     UpdateRecordData::new()
///         .id(123)
///         .record(Record::from([
///             ("status", FieldValue::SingleLineText("Completed".to_owned())),
///         ]))
///         .revision(5),
///     UpdateRecordData::new()
///         .update_key("code".to_owned(), "ABC123")  // String field
///         .record(Record::from([
///             ("priority", FieldValue::SingleLineText("High".to_owned())),
///         ])),
///     UpdateRecordData::new()
///         .update_key("employee_id".to_owned(), 12345)  // Number field
///         .record(Record::from([
///             ("department", FieldValue::SingleLineText("Engineering".to_owned())),
///         ])),
/// ];
///
/// let response = kintone::v1::record::update_records(456, updates)
///     .upsert(true)
///     .send(&client)?;
/// println!("Updated {} records", response.records.len());
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/update-records/>
pub fn update_records(app: u64, records: Vec<UpdateRecordData>) -> UpdateRecordsRequest {
    let builder = RequestBuilder::new(http::Method::PUT, "/v1/records.json");
    UpdateRecordsRequest {
        builder,
        body: UpdateRecordsRequestBody {
            app,
            records,
            upsert: None,
        },
    }
}

/// Data for updating a single record in a bulk update operation.
#[derive(Debug, Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateRecordData {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<u64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub update_key: Option<UpdateKey>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub record: Option<Record>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub revision: Option<u64>,
}

impl UpdateRecordData {
    /// Creates a new UpdateRecordData instance.
    pub fn new() -> Self {
        Self {
            id: None,
            update_key: None,
            record: None,
            revision: None,
        }
    }

    /// Sets the record ID to update.
    pub fn id(mut self, id: u64) -> Self {
        self.id = Some(id);
        self
    }

    /// Sets the unique key to identify the record to update.
    pub fn update_key(mut self, field: String, value: impl Into<UpdateKeyValue>) -> Self {
        self.update_key = Some(UpdateKey {
            field,
            value: value.into(),
        });
        self
    }

    /// Sets the record data to update.
    pub fn record(mut self, record: Record) -> Self {
        self.record = Some(record);
        self
    }

    /// Sets the expected revision number for optimistic locking.
    pub fn revision(mut self, revision: u64) -> Self {
        self.revision = Some(revision);
        self
    }
}

impl Default for UpdateRecordData {
    fn default() -> Self {
        Self::new()
    }
}

#[must_use]
pub struct UpdateRecordsRequest {
    builder: RequestBuilder,
    pub(crate) body: UpdateRecordsRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateRecordsRequestBody {
    app: u64,
    records: Vec<UpdateRecordData>,
    #[serde(skip_serializing_if = "Option::is_none")]
    upsert: Option<bool>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateRecordsResponse {
    pub records: Vec<UpdatedRecordInfo>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdatedRecordInfo {
    pub id: String,
    pub revision: String,
    pub operation: String,
}

impl UpdateRecordsRequest {
    /// Enables UPSERT mode. When enabled, records that don't exist will be created.
    pub fn upsert(mut self, upsert: bool) -> Self {
        self.body.upsert = Some(upsert);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<UpdateRecordsResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Deletes multiple records from a Kintone app.
///
/// This function creates a request to delete multiple records from the specified app at once.
/// This is more efficient than deleting records one by one when you need to remove many records.
///
/// # Arguments
/// * `app` - The ID of the Kintone app containing the records to delete
/// * `ids` - A vector of record IDs to delete
///
/// # Limits
/// - Maximum 100 records can be deleted in a single request
/// - If any record deletion fails, all deletions in the request are rolled back
/// - Optional revision numbers can be provided for optimistic locking
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let record_ids = vec![123, 456, 789];
/// let response = kintone::v1::record::delete_records(100, record_ids)
///     .send(&client)?;
/// println!("Records deleted successfully");
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Example with revision numbers
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let record_ids = vec![123, 456];
/// let revisions = vec![5, 8];
/// let response = kintone::v1::record::delete_records(100, record_ids)
///     .revisions(revisions)
///     .send(&client)?;
/// println!("Records deleted successfully with revision check");
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/delete-records/>
pub fn delete_records(app: u64, ids: Vec<u64>) -> DeleteRecordsRequest {
    let builder = RequestBuilder::new(http::Method::DELETE, "/v1/records.json");
    DeleteRecordsRequest {
        builder,
        body: DeleteRecordsRequestBody {
            app,
            ids,
            revisions: None,
        },
    }
}

#[must_use]
pub struct DeleteRecordsRequest {
    builder: RequestBuilder,
    pub(crate) body: DeleteRecordsRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DeleteRecordsRequestBody {
    app: u64,
    ids: Vec<u64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    revisions: Option<Vec<u64>>,
}

#[derive(Debug, Clone, Deserialize)]
pub struct DeleteRecordsResponse {
    // Empty response body
}

impl DeleteRecordsRequest {
    /// Sets the expected revision numbers for optimistic locking.
    ///
    /// The length of the revisions vector should match the length of the IDs vector.
    /// Use -1 or omit to skip revision checking for specific records.
    pub fn revisions(mut self, revisions: Vec<u64>) -> Self {
        self.body.revisions = Some(revisions);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<DeleteRecordsResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Retrieves comments for a specific record in a Kintone app.
///
/// This function creates a request to get all comments associated with a specific record.
/// The comments can be ordered, paginated, and filtered using the available methods.
///
/// # Arguments
/// * `app` - The ID of the Kintone app
/// * `record` - The ID of the record to get comments for
/// * `order` (optional) - The order to sort comments
/// * `offset` (optional) - The number of comments to skip
/// * `limit` (optional) - The maximum number of comments to return
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// use kintone::model::Order;
///
/// let response = kintone::v1::record::get_comments(123, 456)
///     .order(Order::Desc)
///     .limit(50)
///     .send(&client)?;
/// println!("Found {} comments", response.comments.len());
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/get-comments/>
pub fn get_comments(app: u64, record: u64) -> GetCommentsRequest {
    let builder = RequestBuilder::new(http::Method::GET, "/v1/record/comments.json")
        .query("app", app)
        .query("record", record);
    GetCommentsRequest { builder }
}

#[must_use]
pub struct GetCommentsRequest {
    builder: RequestBuilder,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GetCommentsResponse {
    pub comments: Vec<PostedRecordComment>,
    pub older: bool,
    pub newer: bool,
}

impl GetCommentsRequest {
    pub fn order(mut self, order: Order) -> Self {
        self.builder = self.builder.query("order", order);
        self
    }

    pub fn offset(mut self, offset: u64) -> Self {
        self.builder = self.builder.query("offset", offset);
        self
    }

    pub fn limit(mut self, limit: u64) -> Self {
        self.builder = self.builder.query("limit", limit);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<GetCommentsResponse, ApiError> {
        self.builder.call(client)
    }
}

//-----------------------------------------------------------------------------

/// Adds a new comment to a specific record in a Kintone app.
///
/// This function creates a request to add a comment to a record. The comment
/// can include text and mentions of other users.
///
/// # Arguments
/// * `app` - The ID of the Kintone app
/// * `record` - The ID of the record to add the comment to
/// * `comment` - The comment data including text and mentions
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// use kintone::model::record::RecordComment;
///
/// let comment = RecordComment {
///     text: "This task is now complete.".to_owned(),
///     mentions: vec![],
/// };
/// let response = kintone::v1::record::add_comment(123, 456, comment).send(&client)?;
/// println!("Added comment with ID: {}", response.id);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/add-comment/>
pub fn add_comment(app: u64, record: u64, comment: RecordComment) -> AddCommentRequest {
    let builder = RequestBuilder::new(http::Method::POST, "/v1/record/comment.json");
    AddCommentRequest {
        builder,
        body: AddCommentRequestBody {
            app,
            record,
            comment,
        },
    }
}

#[must_use]
pub struct AddCommentRequest {
    builder: RequestBuilder,
    body: AddCommentRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct AddCommentRequestBody {
    app: u64,
    record: u64,
    comment: RecordComment,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AddCommentResponse {
    #[serde(with = "stringified")]
    pub id: u64,
}

impl AddCommentRequest {
    pub fn send(self, client: &KintoneClient) -> Result<AddCommentResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Deletes a specific comment from a record in a Kintone app.
///
/// This function creates a request to delete a comment from a record. Only the
/// comment author or users with appropriate permissions can delete comments.
///
/// # Arguments
/// * `app` - The ID of the Kintone app
/// * `record` - The ID of the record containing the comment
/// * `comment` - The ID of the comment to delete
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let response = kintone::v1::record::delete_comment(123, 456, 789).send(&client)?;
/// println!("Comment deleted successfully");
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/delete-comment/>
pub fn delete_comment(app: u64, record: u64, comment: u64) -> DeleteCommentRequest {
    let builder = RequestBuilder::new(http::Method::DELETE, "/v1/record/comment.json");
    DeleteCommentRequest {
        builder,
        body: DeleteCommentRequestBody {
            app,
            record,
            comment,
        },
    }
}

#[must_use]
pub struct DeleteCommentRequest {
    builder: RequestBuilder,
    body: DeleteCommentRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DeleteCommentRequestBody {
    app: u64,
    record: u64,
    comment: u64,
}

#[derive(Debug, Clone, Deserialize)]
pub struct DeleteCommentResponse {
    // Empty response body
}

impl DeleteCommentRequest {
    pub fn send(self, client: &KintoneClient) -> Result<DeleteCommentResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Updates the assignees of a record in a Kintone app.
///
/// This function creates a request to update the list of users assigned to a record.
/// This is typically used in workflow processes where tasks need to be reassigned.
///
/// # Arguments
/// * `app` - The ID of the Kintone app
/// * `id` - The ID of the record to update assignees for
/// * `assignees` - A vector of user login names to assign to the record
/// * `revision` (optional) - The expected revision number of the record to prevent conflicts
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let assignees = vec!["user1".to_owned(), "user2".to_owned()];
/// let response = kintone::v1::record::update_assignees(123, 456, assignees)
///     .revision(10)
///     .send(&client)?;
/// println!("Updated assignees, new revision: {}", response.revision);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/update-assignees/>
pub fn update_assignees(app: u64, id: u64, assignees: Vec<String>) -> UpdateAssigneesRequest {
    let builder = RequestBuilder::new(http::Method::PUT, "/v1/record/assignees.json");
    UpdateAssigneesRequest {
        builder,
        body: UpdateAssigneesRequestBody {
            app,
            id,
            assignees,
            revision: None,
        },
    }
}

#[must_use]
pub struct UpdateAssigneesRequest {
    builder: RequestBuilder,
    pub(crate) body: UpdateAssigneesRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateAssigneesRequestBody {
    app: u64,
    id: u64,
    assignees: Vec<String>,
    revision: Option<u64>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateAssigneesResponse {
    #[serde(with = "stringified")]
    pub revision: u64,
}

impl UpdateAssigneesRequest {
    pub fn revision(mut self, revision: u64) -> Self {
        self.body.revision = Some(revision);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<UpdateAssigneesResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Updates the status of a record in a Kintone app workflow.
///
/// This function creates a request to change the status of a record by executing
/// a workflow action. The action moves the record from its current status to the next
/// status in the workflow.
///
/// # Arguments
/// * `app` - The ID of the Kintone app
/// * `id` - The ID of the record to update the status for
/// * `action` - The name of the workflow action to execute
/// * `assignee` (optional) - The login name or code of the user to assign the record to
/// * `revision` (optional) - The expected revision number of the record to prevent conflicts
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let response = kintone::v1::record::update_status(123, 456, "Submit for Review".to_owned())
///     .assignee("reviewer1".to_owned())
///     .revision(5)
///     .send(&client)?;
/// println!("Status updated, new revision: {}", response.revision);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/update-status/>
pub fn update_status(app: u64, id: u64, action: String) -> UpdateStatusRequest {
    let builder = RequestBuilder::new(http::Method::PUT, "/v1/record/status.json");
    UpdateStatusRequest {
        builder,
        body: UpdateStatusRequestBody {
            app,
            id,
            action,
            assignee: None,
            revision: None,
        },
    }
}

#[must_use]
pub struct UpdateStatusRequest {
    builder: RequestBuilder,
    pub(crate) body: UpdateStatusRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateStatusRequestBody {
    app: u64,
    id: u64,
    action: String,
    assignee: Option<String>,
    revision: Option<u64>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateStatusResponse {
    #[serde(with = "stringified")]
    pub revision: u64,
}

impl UpdateStatusRequest {
    pub fn assignee(mut self, assignee: String) -> Self {
        self.body.assignee = Some(assignee);
        self
    }

    pub fn revision(mut self, revision: u64) -> Self {
        self.body.revision = Some(revision);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<UpdateStatusResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Creates a cursor for paginating through large result sets efficiently.
///
/// This function creates a request to generate a cursor that can be used to retrieve
/// records in chunks. This is more efficient than using offset-based pagination for
/// large datasets as it provides consistent results even when records are being
/// added or modified during iteration.
///
/// # Arguments
/// * `app` - The ID of the Kintone app to create a cursor for
/// * `fields` (optional) - An array of field codes to include in the response
/// * `query` (optional) - A query string following Kintone's query syntax
/// * `size` (optional) - The number of records to retrieve per page (default: 100, max: 500)
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// let response = kintone::v1::record::create_cursor(123)
///     .query("status = \"Active\"")
///     .fields(&["name", "email", "status"])
///     .size(100)
///     .send(&client)?;
/// println!("Created cursor: {}", response.id);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/create-cursor/>
pub fn create_cursor(app: u64) -> CreateCursorRequest {
    let builder = RequestBuilder::new(http::Method::POST, "/v1/records/cursor.json");
    CreateCursorRequest {
        builder,
        body: CreateCursorRequestBody {
            app,
            fields: None,
            query: None,
            size: None,
        },
    }
}

#[must_use]
pub struct CreateCursorRequest {
    builder: RequestBuilder,
    body: CreateCursorRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CreateCursorRequestBody {
    app: u64,
    #[serde(skip_serializing_if = "Option::is_none")]
    fields: Option<Vec<String>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    query: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    size: Option<u64>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CreateCursorResponse {
    pub id: String,
    #[serde(with = "stringified")]
    pub total_count: u64,
}

impl CreateCursorRequest {
    /// Specifies which fields to include in the response.
    ///
    /// # Arguments
    /// * `fields` - An array of field codes to retrieve
    pub fn fields(mut self, fields: &[&str]) -> Self {
        self.body.fields = Some(fields.iter().map(|s| s.to_string()).collect());
        self
    }

    /// Sets a query to filter the records.
    ///
    /// # Arguments
    /// * `query` - A query string following Kintone's query syntax
    pub fn query(mut self, query: &str) -> Self {
        self.body.query = Some(query.to_string());
        self
    }

    /// Sets the number of records to retrieve per page.
    ///
    /// # Arguments
    /// * `size` - The page size (default: 100, max: 500)
    pub fn size(mut self, size: u64) -> Self {
        self.body.size = Some(size);
        self
    }

    pub fn send(self, client: &KintoneClient) -> Result<CreateCursorResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Retrieves records using a previously created cursor.
///
/// This function creates a request to fetch records using a cursor ID obtained
/// from `create_cursor`. The cursor maintains state to efficiently paginate
/// through large result sets.
///
/// # Arguments
/// * `id` - The cursor ID returned from `create_cursor`
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// // First create a cursor
/// let cursor_response = kintone::v1::record::create_cursor(123)
///     .query("status = \"Active\"")
///     .size(100)
///     .send(&client)?;
///
/// // Then retrieve records using the cursor
/// let response = kintone::v1::record::get_records_by_cursor(&cursor_response.id)
///     .send(&client)?;
/// println!("Retrieved {} records", response.records.len());
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/get-records-with-cursor/>
pub fn get_records_by_cursor(id: &str) -> GetRecordsByCursorRequest {
    let builder = RequestBuilder::new(http::Method::GET, "/v1/records/cursor.json").query("id", id);
    GetRecordsByCursorRequest { builder }
}

#[must_use]
pub struct GetRecordsByCursorRequest {
    builder: RequestBuilder,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GetRecordsByCursorResponse {
    pub records: Vec<Record>,
    pub next: bool,
}

impl GetRecordsByCursorRequest {
    pub fn send(self, client: &KintoneClient) -> Result<GetRecordsByCursorResponse, ApiError> {
        self.builder.call(client)
    }
}

//-----------------------------------------------------------------------------

/// Deletes a cursor to free up resources.
///
/// This function creates a request to delete a cursor when you're done using it.
/// While cursors automatically expire after a certain period, it's good practice
/// to explicitly delete them when no longer needed.
///
/// # Arguments
/// * `id` - The cursor ID to delete
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// # let cursor_id = "example-cursor-id";
/// let response = kintone::v1::record::delete_cursor(cursor_id).send(&client)?;
/// println!("Cursor deleted successfully");
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/delete-cursor/>
pub fn delete_cursor(id: &str) -> DeleteCursorRequest {
    let builder = RequestBuilder::new(http::Method::DELETE, "/v1/records/cursor.json");
    DeleteCursorRequest {
        builder,
        body: DeleteCursorRequestBody { id: id.to_string() },
    }
}

#[must_use]
pub struct DeleteCursorRequest {
    builder: RequestBuilder,
    body: DeleteCursorRequestBody,
}

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DeleteCursorRequestBody {
    id: String,
}

#[derive(Debug, Clone, Deserialize)]
pub struct DeleteCursorResponse {
    // Empty response body
}

impl DeleteCursorRequest {
    pub fn send(self, client: &KintoneClient) -> Result<DeleteCursorResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------

/// Executes multiple API requests in a single bulk operation.
///
/// This function creates a request to execute multiple API operations atomically.
/// If any operation fails, all operations are rolled back. This is useful for
/// maintaining data consistency across multiple apps or complex operations.
///
/// # Arguments
/// * `requests` - A vector of BulkRequestItem containing the operations to execute
///
/// # Limits
/// - Maximum 20 requests can be executed in a single bulk request
/// - All operations are executed atomically (all succeed or all fail)
/// - Supports record operations, status updates, and assignee updates
///
/// # Example
/// ```no_run
/// # use kintone::client::{Auth, KintoneClient};
/// # let client = KintoneClient::new("https://example.cybozu.com", Auth::password("user".to_owned(), "pass".to_owned()));
/// use kintone::model::record::{Record, FieldValue};
/// use kintone::v1::record::{BulkRequestItem, bulk_request};
///
/// let requests = vec![
///     // Add a record
///     kintone::v1::record::add_record(100)
///         .record(Record::from([
///             ("name", FieldValue::SingleLineText("New Record".to_owned())),
///         ]))
///         .try_into()?,
///     // Update a record
///     kintone::v1::record::update_record(101)
///         .id(456)
///         .record(Record::from([
///             ("status", FieldValue::SingleLineText("Updated".to_owned())),
///         ]))
///         .try_into()?,
///     // Delete records
///     kintone::v1::record::delete_records(102, vec![789, 790])
///         .try_into()?,
/// ];
///
/// let response = bulk_request(requests).send(&client)?;
/// println!("Executed {} operations", response.results.len());
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Reference
/// <https://cybozu.dev/ja/kintone/docs/rest-api/records/bulk-request/>
pub fn bulk_request(requests: Vec<BulkRequestItem>) -> BulkRequestRequest {
    let builder = RequestBuilder::new(http::Method::POST, "/v1/bulkRequest.json");
    BulkRequestRequest {
        builder,
        body: BulkRequestRequestBody { requests },
    }
}

/// Represents a single request item in a bulk operation.
#[derive(Debug, Clone, Serialize)]
pub struct BulkRequestItem {
    /// HTTP method for the request
    #[serde(with = "stringified")]
    method: http::Method,
    /// API endpoint path
    api: String,
    /// Request payload
    payload: serde_json::Value,
}

impl TryFrom<AddRecordRequest> for BulkRequestItem {
    type Error = serde_json::Error;

    fn try_from(request: AddRecordRequest) -> Result<Self, Self::Error> {
        Ok(Self {
            method: http::Method::POST,
            api: "/k/v1/record.json".to_string(),
            payload: serde_json::to_value(request.body)?,
        })
    }
}

impl TryFrom<AddRecordsRequest> for BulkRequestItem {
    type Error = serde_json::Error;

    fn try_from(request: AddRecordsRequest) -> Result<Self, Self::Error> {
        Ok(Self {
            method: http::Method::POST,
            api: "/k/v1/records.json".to_string(),
            payload: serde_json::to_value(request.body)?,
        })
    }
}

impl TryFrom<UpdateRecordRequest> for BulkRequestItem {
    type Error = serde_json::Error;

    fn try_from(request: UpdateRecordRequest) -> Result<Self, Self::Error> {
        Ok(Self {
            method: http::Method::PUT,
            api: "/k/v1/record.json".to_string(),
            payload: serde_json::to_value(request.body)?,
        })
    }
}

impl TryFrom<UpdateRecordsRequest> for BulkRequestItem {
    type Error = serde_json::Error;

    fn try_from(request: UpdateRecordsRequest) -> Result<Self, Self::Error> {
        Ok(Self {
            method: http::Method::PUT,
            api: "/k/v1/records.json".to_string(),
            payload: serde_json::to_value(request.body)?,
        })
    }
}

impl TryFrom<DeleteRecordsRequest> for BulkRequestItem {
    type Error = serde_json::Error;

    fn try_from(request: DeleteRecordsRequest) -> Result<Self, Self::Error> {
        Ok(Self {
            method: http::Method::DELETE,
            api: "/k/v1/records.json".to_string(),
            payload: serde_json::to_value(request.body)?,
        })
    }
}

impl TryFrom<UpdateAssigneesRequest> for BulkRequestItem {
    type Error = serde_json::Error;

    fn try_from(request: UpdateAssigneesRequest) -> Result<Self, Self::Error> {
        Ok(Self {
            method: http::Method::PUT,
            api: "/k/v1/record/assignees.json".to_string(),
            payload: serde_json::to_value(request.body)?,
        })
    }
}

impl TryFrom<UpdateStatusRequest> for BulkRequestItem {
    type Error = serde_json::Error;

    fn try_from(request: UpdateStatusRequest) -> Result<Self, Self::Error> {
        Ok(Self {
            method: http::Method::PUT,
            api: "/k/v1/record/status.json".to_string(),
            payload: serde_json::to_value(request.body)?,
        })
    }
}

#[must_use]
pub struct BulkRequestRequest {
    builder: RequestBuilder,
    body: BulkRequestRequestBody,
}

#[derive(Serialize)]
struct BulkRequestRequestBody {
    requests: Vec<BulkRequestItem>,
}

#[derive(Debug, Clone, Deserialize)]
pub struct BulkRequestResponse {
    pub results: Vec<serde_json::Value>,
}

impl BulkRequestRequest {
    pub fn send(self, client: &KintoneClient) -> Result<BulkRequestResponse, ApiError> {
        self.builder.send(client, self.body)
    }
}

//-----------------------------------------------------------------------------