@firedrill-tools/trolley 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +219 -0
  3. package/firedrill/agent.target.json +16 -0
  4. package/firedrill/baseline.scenario.json +2109 -0
  5. package/firedrill/conformance.suite.json +19 -0
  6. package/firedrill/partner-outage.scenario.json +11 -0
  7. package/firedrill/processing-response-lost.scenario.json +11 -0
  8. package/firedrill/rate-limited.scenario.json +11 -0
  9. package/firedrill/tight-limits.scenario.json +16 -0
  10. package/firedrill/tools/trolley/app/assets/ATTRIBUTION.md +35 -0
  11. package/firedrill/tools/trolley/app/assets/cropped-Site-Icon-512x512-px-1-192x192.png +0 -0
  12. package/firedrill/tools/trolley/app/assets/fonts/OFL.txt +93 -0
  13. package/firedrill/tools/trolley/app/assets/full-logo.svg +1 -0
  14. package/firedrill/tools/trolley/app/assets/logo-black.svg +18 -0
  15. package/firedrill/tools/trolley/app/site/app.js +139 -0
  16. package/firedrill/tools/trolley/app/site/assets/fonts/inter-latin.woff2 +0 -0
  17. package/firedrill/tools/trolley/app/site/assets/trolley-icon.png +0 -0
  18. package/firedrill/tools/trolley/app/site/assets/trolley-logo.svg +1 -0
  19. package/firedrill/tools/trolley/app/site/base.css +99 -0
  20. package/firedrill/tools/trolley/app/site/batch-actions.js +139 -0
  21. package/firedrill/tools/trolley/app/site/components.css +149 -0
  22. package/firedrill/tools/trolley/app/site/icons.js +50 -0
  23. package/firedrill/tools/trolley/app/site/index.html +53 -0
  24. package/firedrill/tools/trolley/app/site/list.js +87 -0
  25. package/firedrill/tools/trolley/app/site/ui.js +181 -0
  26. package/firedrill/tools/trolley/app/site/view-balances.js +30 -0
  27. package/firedrill/tools/trolley/app/site/view-batch.js +86 -0
  28. package/firedrill/tools/trolley/app/site/view-batches.js +78 -0
  29. package/firedrill/tools/trolley/app/site/view-dashboard.js +79 -0
  30. package/firedrill/tools/trolley/app/site/view-methods.js +80 -0
  31. package/firedrill/tools/trolley/app/site/view-recipient.js +124 -0
  32. package/firedrill/tools/trolley/app/site/view-recipients.js +115 -0
  33. package/firedrill/tools/trolley/behavior.mjs +78 -0
  34. package/firedrill/tools/trolley/lib/access.mjs +21 -0
  35. package/firedrill/tools/trolley/lib/ids.mjs +28 -0
  36. package/firedrill/tools/trolley/lib/money.mjs +55 -0
  37. package/firedrill/tools/trolley/lib/paging.mjs +65 -0
  38. package/firedrill/tools/trolley/lib/pricing.mjs +88 -0
  39. package/firedrill/tools/trolley/lib/records.mjs +87 -0
  40. package/firedrill/tools/trolley/lib/serialize.mjs +152 -0
  41. package/firedrill/tools/trolley/lib/store.mjs +61 -0
  42. package/firedrill/tools/trolley/lib/time.mjs +60 -0
  43. package/firedrill/tools/trolley/lib/validate.mjs +111 -0
  44. package/firedrill/tools/trolley/lib/wire.mjs +145 -0
  45. package/firedrill/tools/trolley/ops/accounts-write.mjs +117 -0
  46. package/firedrill/tools/trolley/ops/accounts.mjs +129 -0
  47. package/firedrill/tools/trolley/ops/balances.mjs +23 -0
  48. package/firedrill/tools/trolley/ops/batches.mjs +139 -0
  49. package/firedrill/tools/trolley/ops/payment-build.mjs +79 -0
  50. package/firedrill/tools/trolley/ops/payments.mjs +112 -0
  51. package/firedrill/tools/trolley/ops/processing.mjs +104 -0
  52. package/firedrill/tools/trolley/ops/recipients-list.mjs +58 -0
  53. package/firedrill/tools/trolley/ops/recipients.mjs +127 -0
  54. package/firedrill/tools/trolley/trolley.tool.json +10095 -0
  55. package/firedrill/trolley-accounts.drill.json +205 -0
  56. package/firedrill/trolley-batch-lifecycle.drill.json +522 -0
  57. package/firedrill/trolley-denied.drill.json +74 -0
  58. package/firedrill/trolley-fresh-install.drill.json +68 -0
  59. package/firedrill/trolley-invalid-key.drill.json +743 -0
  60. package/firedrill/trolley-partner-outage.drill.json +97 -0
  61. package/firedrill/trolley-processing-rules.drill.json +138 -0
  62. package/firedrill/trolley-rate-limited.drill.json +118 -0
  63. package/firedrill/trolley-read-only.drill.json +468 -0
  64. package/firedrill/trolley-recipients.drill.json +183 -0
  65. package/firedrill/trolley-response-lost.drill.json +127 -0
  66. package/firedrill/trolley-tight-limits.drill.json +348 -0
  67. package/firedrill/world.json +2539 -0
  68. package/firedrill.json +5 -0
  69. package/package.json +64 -0
  70. package/starter.json +2108 -0
  71. package/test/conformance.mjs +12 -0
  72. package/test/flow-access.mjs +54 -0
  73. package/test/flow-accounts.mjs +63 -0
  74. package/test/flow-batches.mjs +107 -0
  75. package/test/flow-faults.mjs +58 -0
  76. package/test/flow-processing.mjs +41 -0
  77. package/test/flow-recipients.mjs +93 -0
  78. package/test/harness.mjs +87 -0
@@ -0,0 +1,2539 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "trolley-conformance-world",
4
+ "title": "Trolley Tool conformance world (Larkspur Creator Studio sandbox merchant)",
5
+ "virtualTimeUs": 1789480800000000,
6
+ "actors": [
7
+ {
8
+ "id": "ops",
9
+ "description": "Payout operations key of the seeded merchant: merchantId attribute matches meta/merchant, accessLevel full; every operation granted.",
10
+ "attributes": {
11
+ "merchantId": "M-4Lk9Qx2Rb7Tn3Vw8Yz1Ca6",
12
+ "accessLevel": "full",
13
+ "displayName": "Payout Ops"
14
+ },
15
+ "grants": [
16
+ {
17
+ "packageId": "trolley",
18
+ "operationId": "recipients.create"
19
+ },
20
+ {
21
+ "packageId": "trolley",
22
+ "operationId": "recipients.get"
23
+ },
24
+ {
25
+ "packageId": "trolley",
26
+ "operationId": "recipients.update"
27
+ },
28
+ {
29
+ "packageId": "trolley",
30
+ "operationId": "recipients.delete"
31
+ },
32
+ {
33
+ "packageId": "trolley",
34
+ "operationId": "recipients.list"
35
+ },
36
+ {
37
+ "packageId": "trolley",
38
+ "operationId": "recipient_accounts.create"
39
+ },
40
+ {
41
+ "packageId": "trolley",
42
+ "operationId": "recipient_accounts.list"
43
+ },
44
+ {
45
+ "packageId": "trolley",
46
+ "operationId": "recipient_accounts.get"
47
+ },
48
+ {
49
+ "packageId": "trolley",
50
+ "operationId": "recipient_accounts.update"
51
+ },
52
+ {
53
+ "packageId": "trolley",
54
+ "operationId": "recipient_accounts.delete"
55
+ },
56
+ {
57
+ "packageId": "trolley",
58
+ "operationId": "batches.create"
59
+ },
60
+ {
61
+ "packageId": "trolley",
62
+ "operationId": "batches.get"
63
+ },
64
+ {
65
+ "packageId": "trolley",
66
+ "operationId": "batches.update"
67
+ },
68
+ {
69
+ "packageId": "trolley",
70
+ "operationId": "batches.delete"
71
+ },
72
+ {
73
+ "packageId": "trolley",
74
+ "operationId": "batches.list"
75
+ },
76
+ {
77
+ "packageId": "trolley",
78
+ "operationId": "batches.generate_quote"
79
+ },
80
+ {
81
+ "packageId": "trolley",
82
+ "operationId": "batches.start_processing"
83
+ },
84
+ {
85
+ "packageId": "trolley",
86
+ "operationId": "batches.summary"
87
+ },
88
+ {
89
+ "packageId": "trolley",
90
+ "operationId": "payments.create"
91
+ },
92
+ {
93
+ "packageId": "trolley",
94
+ "operationId": "payments.list"
95
+ },
96
+ {
97
+ "packageId": "trolley",
98
+ "operationId": "payments.get"
99
+ },
100
+ {
101
+ "packageId": "trolley",
102
+ "operationId": "payments.update"
103
+ },
104
+ {
105
+ "packageId": "trolley",
106
+ "operationId": "payments.delete"
107
+ },
108
+ {
109
+ "packageId": "trolley",
110
+ "operationId": "balances.list"
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ "id": "fresh",
116
+ "description": "Actor as created by a fresh install: no attributes, so it maps to the seeded merchant with full access; every operation granted.",
117
+ "attributes": {},
118
+ "grants": [
119
+ {
120
+ "packageId": "trolley",
121
+ "operationId": "recipients.create"
122
+ },
123
+ {
124
+ "packageId": "trolley",
125
+ "operationId": "recipients.get"
126
+ },
127
+ {
128
+ "packageId": "trolley",
129
+ "operationId": "recipients.update"
130
+ },
131
+ {
132
+ "packageId": "trolley",
133
+ "operationId": "recipients.delete"
134
+ },
135
+ {
136
+ "packageId": "trolley",
137
+ "operationId": "recipients.list"
138
+ },
139
+ {
140
+ "packageId": "trolley",
141
+ "operationId": "recipient_accounts.create"
142
+ },
143
+ {
144
+ "packageId": "trolley",
145
+ "operationId": "recipient_accounts.list"
146
+ },
147
+ {
148
+ "packageId": "trolley",
149
+ "operationId": "recipient_accounts.get"
150
+ },
151
+ {
152
+ "packageId": "trolley",
153
+ "operationId": "recipient_accounts.update"
154
+ },
155
+ {
156
+ "packageId": "trolley",
157
+ "operationId": "recipient_accounts.delete"
158
+ },
159
+ {
160
+ "packageId": "trolley",
161
+ "operationId": "batches.create"
162
+ },
163
+ {
164
+ "packageId": "trolley",
165
+ "operationId": "batches.get"
166
+ },
167
+ {
168
+ "packageId": "trolley",
169
+ "operationId": "batches.update"
170
+ },
171
+ {
172
+ "packageId": "trolley",
173
+ "operationId": "batches.delete"
174
+ },
175
+ {
176
+ "packageId": "trolley",
177
+ "operationId": "batches.list"
178
+ },
179
+ {
180
+ "packageId": "trolley",
181
+ "operationId": "batches.generate_quote"
182
+ },
183
+ {
184
+ "packageId": "trolley",
185
+ "operationId": "batches.start_processing"
186
+ },
187
+ {
188
+ "packageId": "trolley",
189
+ "operationId": "batches.summary"
190
+ },
191
+ {
192
+ "packageId": "trolley",
193
+ "operationId": "payments.create"
194
+ },
195
+ {
196
+ "packageId": "trolley",
197
+ "operationId": "payments.list"
198
+ },
199
+ {
200
+ "packageId": "trolley",
201
+ "operationId": "payments.get"
202
+ },
203
+ {
204
+ "packageId": "trolley",
205
+ "operationId": "payments.update"
206
+ },
207
+ {
208
+ "packageId": "trolley",
209
+ "operationId": "payments.delete"
210
+ },
211
+ {
212
+ "packageId": "trolley",
213
+ "operationId": "balances.list"
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ "id": "viewer",
219
+ "description": "Read-only key of the seeded merchant (accessLevel read_only): reads succeed, writes answer 403 not_authorized.",
220
+ "attributes": {
221
+ "accessLevel": "read_only",
222
+ "displayName": "Finance Viewer"
223
+ },
224
+ "grants": [
225
+ {
226
+ "packageId": "trolley",
227
+ "operationId": "recipients.create"
228
+ },
229
+ {
230
+ "packageId": "trolley",
231
+ "operationId": "recipients.get"
232
+ },
233
+ {
234
+ "packageId": "trolley",
235
+ "operationId": "recipients.update"
236
+ },
237
+ {
238
+ "packageId": "trolley",
239
+ "operationId": "recipients.delete"
240
+ },
241
+ {
242
+ "packageId": "trolley",
243
+ "operationId": "recipients.list"
244
+ },
245
+ {
246
+ "packageId": "trolley",
247
+ "operationId": "recipient_accounts.create"
248
+ },
249
+ {
250
+ "packageId": "trolley",
251
+ "operationId": "recipient_accounts.list"
252
+ },
253
+ {
254
+ "packageId": "trolley",
255
+ "operationId": "recipient_accounts.get"
256
+ },
257
+ {
258
+ "packageId": "trolley",
259
+ "operationId": "recipient_accounts.update"
260
+ },
261
+ {
262
+ "packageId": "trolley",
263
+ "operationId": "recipient_accounts.delete"
264
+ },
265
+ {
266
+ "packageId": "trolley",
267
+ "operationId": "batches.create"
268
+ },
269
+ {
270
+ "packageId": "trolley",
271
+ "operationId": "batches.get"
272
+ },
273
+ {
274
+ "packageId": "trolley",
275
+ "operationId": "batches.update"
276
+ },
277
+ {
278
+ "packageId": "trolley",
279
+ "operationId": "batches.delete"
280
+ },
281
+ {
282
+ "packageId": "trolley",
283
+ "operationId": "batches.list"
284
+ },
285
+ {
286
+ "packageId": "trolley",
287
+ "operationId": "batches.generate_quote"
288
+ },
289
+ {
290
+ "packageId": "trolley",
291
+ "operationId": "batches.start_processing"
292
+ },
293
+ {
294
+ "packageId": "trolley",
295
+ "operationId": "batches.summary"
296
+ },
297
+ {
298
+ "packageId": "trolley",
299
+ "operationId": "payments.create"
300
+ },
301
+ {
302
+ "packageId": "trolley",
303
+ "operationId": "payments.list"
304
+ },
305
+ {
306
+ "packageId": "trolley",
307
+ "operationId": "payments.get"
308
+ },
309
+ {
310
+ "packageId": "trolley",
311
+ "operationId": "payments.update"
312
+ },
313
+ {
314
+ "packageId": "trolley",
315
+ "operationId": "payments.delete"
316
+ },
317
+ {
318
+ "packageId": "trolley",
319
+ "operationId": "balances.list"
320
+ }
321
+ ]
322
+ },
323
+ {
324
+ "id": "other-merchant",
325
+ "description": "Key claiming a merchant that is not this account: every operation answers 401 invalid_api_key.",
326
+ "attributes": {
327
+ "merchantId": "M-000000000000000000000Z"
328
+ },
329
+ "grants": [
330
+ {
331
+ "packageId": "trolley",
332
+ "operationId": "recipients.create"
333
+ },
334
+ {
335
+ "packageId": "trolley",
336
+ "operationId": "recipients.get"
337
+ },
338
+ {
339
+ "packageId": "trolley",
340
+ "operationId": "recipients.update"
341
+ },
342
+ {
343
+ "packageId": "trolley",
344
+ "operationId": "recipients.delete"
345
+ },
346
+ {
347
+ "packageId": "trolley",
348
+ "operationId": "recipients.list"
349
+ },
350
+ {
351
+ "packageId": "trolley",
352
+ "operationId": "recipient_accounts.create"
353
+ },
354
+ {
355
+ "packageId": "trolley",
356
+ "operationId": "recipient_accounts.list"
357
+ },
358
+ {
359
+ "packageId": "trolley",
360
+ "operationId": "recipient_accounts.get"
361
+ },
362
+ {
363
+ "packageId": "trolley",
364
+ "operationId": "recipient_accounts.update"
365
+ },
366
+ {
367
+ "packageId": "trolley",
368
+ "operationId": "recipient_accounts.delete"
369
+ },
370
+ {
371
+ "packageId": "trolley",
372
+ "operationId": "batches.create"
373
+ },
374
+ {
375
+ "packageId": "trolley",
376
+ "operationId": "batches.get"
377
+ },
378
+ {
379
+ "packageId": "trolley",
380
+ "operationId": "batches.update"
381
+ },
382
+ {
383
+ "packageId": "trolley",
384
+ "operationId": "batches.delete"
385
+ },
386
+ {
387
+ "packageId": "trolley",
388
+ "operationId": "batches.list"
389
+ },
390
+ {
391
+ "packageId": "trolley",
392
+ "operationId": "batches.generate_quote"
393
+ },
394
+ {
395
+ "packageId": "trolley",
396
+ "operationId": "batches.start_processing"
397
+ },
398
+ {
399
+ "packageId": "trolley",
400
+ "operationId": "batches.summary"
401
+ },
402
+ {
403
+ "packageId": "trolley",
404
+ "operationId": "payments.create"
405
+ },
406
+ {
407
+ "packageId": "trolley",
408
+ "operationId": "payments.list"
409
+ },
410
+ {
411
+ "packageId": "trolley",
412
+ "operationId": "payments.get"
413
+ },
414
+ {
415
+ "packageId": "trolley",
416
+ "operationId": "payments.update"
417
+ },
418
+ {
419
+ "packageId": "trolley",
420
+ "operationId": "payments.delete"
421
+ },
422
+ {
423
+ "packageId": "trolley",
424
+ "operationId": "balances.list"
425
+ }
426
+ ]
427
+ },
428
+ {
429
+ "id": "no-grants",
430
+ "description": "Actor without operation grants: the framework denies every call before the Tool runs.",
431
+ "attributes": {},
432
+ "grants": []
433
+ }
434
+ ],
435
+ "state": [
436
+ {
437
+ "action": "upsert",
438
+ "packageId": "trolley",
439
+ "namespace": "meta",
440
+ "rowId": "merchant",
441
+ "value": {
442
+ "id": "M-4Lk9Qx2Rb7Tn3Vw8Yz1Ca6",
443
+ "name": "Larkspur Creator Studio",
444
+ "country": "US",
445
+ "defaultCurrency": "USD",
446
+ "sandbox": true
447
+ }
448
+ },
449
+ {
450
+ "action": "upsert",
451
+ "packageId": "trolley",
452
+ "namespace": "meta",
453
+ "rowId": "counters",
454
+ "value": {
455
+ "next": 1000
456
+ }
457
+ },
458
+ {
459
+ "action": "upsert",
460
+ "packageId": "trolley",
461
+ "namespace": "meta",
462
+ "rowId": "fx",
463
+ "value": {
464
+ "base": "USD",
465
+ "rates": {
466
+ "USD": "1.000000",
467
+ "CAD": "1.352000",
468
+ "EUR": "0.912000",
469
+ "GBP": "0.781000",
470
+ "AUD": "1.498000",
471
+ "MXN": "17.240000"
472
+ },
473
+ "asOf": "2026-09-15T13:00:00.000Z"
474
+ }
475
+ },
476
+ {
477
+ "action": "upsert",
478
+ "packageId": "trolley",
479
+ "namespace": "meta",
480
+ "rowId": "fees",
481
+ "value": {
482
+ "currency": "USD",
483
+ "fixed": {
484
+ "bank-transfer": "1.00",
485
+ "paypal": "1.00",
486
+ "check": "2.50",
487
+ "venmo": "0.75"
488
+ },
489
+ "minimums": {
490
+ "bank-transfer": "5.00",
491
+ "paypal": "1.00",
492
+ "check": "20.00",
493
+ "venmo": "1.00"
494
+ }
495
+ }
496
+ },
497
+ {
498
+ "action": "upsert",
499
+ "packageId": "trolley",
500
+ "namespace": "balances",
501
+ "rowId": "paymentrails:USD",
502
+ "value": {
503
+ "type": "paymentrails",
504
+ "currency": "USD",
505
+ "amount": "18420.55",
506
+ "pendingAmount": "0.00",
507
+ "accountNumber": "BL-7QX2M9KD4R",
508
+ "primary": true,
509
+ "display": true
510
+ }
511
+ },
512
+ {
513
+ "action": "upsert",
514
+ "packageId": "trolley",
515
+ "namespace": "balances",
516
+ "rowId": "paymentrails:CAD",
517
+ "value": {
518
+ "type": "paymentrails",
519
+ "currency": "CAD",
520
+ "amount": "2150.00",
521
+ "pendingAmount": "0.00",
522
+ "accountNumber": "BL-3HT8V1NC6W",
523
+ "primary": false,
524
+ "display": true
525
+ }
526
+ },
527
+ {
528
+ "action": "upsert",
529
+ "packageId": "trolley",
530
+ "namespace": "balances",
531
+ "rowId": "paypal:USD",
532
+ "value": {
533
+ "type": "paypal",
534
+ "currency": "USD",
535
+ "amount": "640.00",
536
+ "pendingAmount": "0.00",
537
+ "accountNumber": "BL-5PL4Z7YB2E",
538
+ "primary": false,
539
+ "display": true
540
+ }
541
+ },
542
+ {
543
+ "action": "upsert",
544
+ "packageId": "trolley",
545
+ "namespace": "recipients",
546
+ "rowId": "R-0000000000000000000001",
547
+ "value": {
548
+ "id": "R-0000000000000000000001",
549
+ "referenceId": "CR-1001",
550
+ "email": "maya.castellanos@example.com",
551
+ "type": "individual",
552
+ "firstName": "Maya",
553
+ "lastName": "Castellanos",
554
+ "name": "Maya Castellanos",
555
+ "status": "active",
556
+ "complianceStatus": "verified",
557
+ "holdStatus": "none",
558
+ "dob": "1991-04-12",
559
+ "phone": "503-555-0101",
560
+ "language": "en",
561
+ "tags": [
562
+ "illustrator",
563
+ "q3"
564
+ ],
565
+ "address": {
566
+ "street1": "1450 Juniper St",
567
+ "street2": null,
568
+ "city": "Portland",
569
+ "region": "OR",
570
+ "postalCode": "97214",
571
+ "country": "US",
572
+ "phone": "503-555-0101"
573
+ },
574
+ "createdAt": "2026-03-02T16:20:00.000Z",
575
+ "updatedAt": "2026-08-30T10:05:00.000Z"
576
+ }
577
+ },
578
+ {
579
+ "action": "upsert",
580
+ "packageId": "trolley",
581
+ "namespace": "recipients",
582
+ "rowId": "R-0000000000000000000002",
583
+ "value": {
584
+ "id": "R-0000000000000000000002",
585
+ "referenceId": "CR-1002",
586
+ "email": "billing@quarrylane.example.com",
587
+ "type": "business",
588
+ "firstName": null,
589
+ "lastName": null,
590
+ "name": "Quarry Lane Films LLC",
591
+ "status": "active",
592
+ "complianceStatus": "verified",
593
+ "holdStatus": "none",
594
+ "dob": null,
595
+ "phone": null,
596
+ "language": "en",
597
+ "tags": [
598
+ "studio"
599
+ ],
600
+ "address": {
601
+ "street1": "88 Harbor Way",
602
+ "street2": "Suite 4",
603
+ "city": "Oakland",
604
+ "region": "CA",
605
+ "postalCode": "94607",
606
+ "country": "US",
607
+ "phone": "510-555-0102"
608
+ },
609
+ "createdAt": "2026-03-09T18:00:00.000Z",
610
+ "updatedAt": "2026-07-21T09:40:00.000Z"
611
+ }
612
+ },
613
+ {
614
+ "action": "upsert",
615
+ "packageId": "trolley",
616
+ "namespace": "recipients",
617
+ "rowId": "R-0000000000000000000003",
618
+ "value": {
619
+ "id": "R-0000000000000000000003",
620
+ "referenceId": "CR-1003",
621
+ "email": "etienne.tremblay@example.com",
622
+ "type": "individual",
623
+ "firstName": "Étienne",
624
+ "lastName": "Tremblay",
625
+ "name": "Étienne Tremblay",
626
+ "status": "active",
627
+ "complianceStatus": "verified",
628
+ "holdStatus": "none",
629
+ "dob": null,
630
+ "phone": null,
631
+ "language": "fr",
632
+ "tags": [
633
+ "editor"
634
+ ],
635
+ "address": {
636
+ "street1": "410 Rue Saint-Paul",
637
+ "street2": null,
638
+ "city": "Montréal",
639
+ "region": "QC",
640
+ "postalCode": "H2Y 1H4",
641
+ "country": "CA",
642
+ "phone": "514-555-0103"
643
+ },
644
+ "createdAt": "2026-03-15T14:10:00.000Z",
645
+ "updatedAt": "2026-07-02T15:30:00.000Z"
646
+ }
647
+ },
648
+ {
649
+ "action": "upsert",
650
+ "packageId": "trolley",
651
+ "namespace": "recipients",
652
+ "rowId": "R-0000000000000000000004",
653
+ "value": {
654
+ "id": "R-0000000000000000000004",
655
+ "referenceId": "CR-1004",
656
+ "email": "zoe.oconnell@example.com",
657
+ "type": "individual",
658
+ "firstName": "Zoë",
659
+ "lastName": "O'Connell",
660
+ "name": "Zoë O'Connell",
661
+ "status": "active",
662
+ "complianceStatus": "verified",
663
+ "holdStatus": "none",
664
+ "dob": null,
665
+ "phone": null,
666
+ "language": "en",
667
+ "tags": [
668
+ "editor",
669
+ "uk"
670
+ ],
671
+ "address": {
672
+ "street1": "12 Wharf Rd",
673
+ "street2": null,
674
+ "city": "London",
675
+ "region": null,
676
+ "postalCode": "N1 7GR",
677
+ "country": "GB",
678
+ "phone": null
679
+ },
680
+ "createdAt": "2026-04-01T11:00:00.000Z",
681
+ "updatedAt": "2026-06-11T08:15:00.000Z"
682
+ }
683
+ },
684
+ {
685
+ "action": "upsert",
686
+ "packageId": "trolley",
687
+ "namespace": "recipients",
688
+ "rowId": "R-0000000000000000000005",
689
+ "value": {
690
+ "id": "R-0000000000000000000005",
691
+ "referenceId": null,
692
+ "email": "lukasz.wisniewski@example.com",
693
+ "type": "individual",
694
+ "firstName": "Łukasz",
695
+ "lastName": "Wiśniewski",
696
+ "name": "Łukasz Wiśniewski",
697
+ "status": "active",
698
+ "complianceStatus": "verified",
699
+ "holdStatus": "none",
700
+ "dob": null,
701
+ "phone": null,
702
+ "language": "de",
703
+ "tags": [
704
+ "colorist"
705
+ ],
706
+ "address": {
707
+ "street1": "Friedrichstraße 20",
708
+ "street2": null,
709
+ "city": "Berlin",
710
+ "region": "BE",
711
+ "postalCode": "10117",
712
+ "country": "DE",
713
+ "phone": null
714
+ },
715
+ "createdAt": "2026-04-08T09:30:00.000Z",
716
+ "updatedAt": "2026-04-08T09:45:00.000Z"
717
+ }
718
+ },
719
+ {
720
+ "action": "upsert",
721
+ "packageId": "trolley",
722
+ "namespace": "recipients",
723
+ "rowId": "R-0000000000000000000006",
724
+ "value": {
725
+ "id": "R-0000000000000000000006",
726
+ "referenceId": "CR-1006",
727
+ "email": "priya.raman@example.com",
728
+ "type": "individual",
729
+ "firstName": "Priya",
730
+ "lastName": "Raman",
731
+ "name": "Priya Raman",
732
+ "status": "active",
733
+ "complianceStatus": "verified",
734
+ "holdStatus": "none",
735
+ "dob": null,
736
+ "phone": null,
737
+ "language": "en",
738
+ "tags": [
739
+ "editor",
740
+ "video",
741
+ "priority"
742
+ ],
743
+ "address": {
744
+ "street1": "77 Elm Ave",
745
+ "street2": null,
746
+ "city": "Austin",
747
+ "region": "TX",
748
+ "postalCode": "78701",
749
+ "country": "US",
750
+ "phone": "512-555-0106"
751
+ },
752
+ "createdAt": "2026-04-20T17:25:00.000Z",
753
+ "updatedAt": "2026-08-01T12:00:00.000Z"
754
+ }
755
+ },
756
+ {
757
+ "action": "upsert",
758
+ "packageId": "trolley",
759
+ "namespace": "recipients",
760
+ "rowId": "R-0000000000000000000007",
761
+ "value": {
762
+ "id": "R-0000000000000000000007",
763
+ "referenceId": "CR-1007",
764
+ "email": "jordan.blake@example.com",
765
+ "type": "individual",
766
+ "firstName": "Jordan",
767
+ "lastName": "Blake",
768
+ "name": "Jordan Blake",
769
+ "status": "active",
770
+ "complianceStatus": "verified",
771
+ "holdStatus": "none",
772
+ "dob": null,
773
+ "phone": null,
774
+ "language": "en",
775
+ "tags": [
776
+ "animator"
777
+ ],
778
+ "address": {
779
+ "street1": "5 Birch Ln",
780
+ "street2": null,
781
+ "city": "Denver",
782
+ "region": "CO",
783
+ "postalCode": "80205",
784
+ "country": "US",
785
+ "phone": "303-555-0107"
786
+ },
787
+ "createdAt": "2026-05-04T13:00:00.000Z",
788
+ "updatedAt": "2026-05-04T13:20:00.000Z"
789
+ }
790
+ },
791
+ {
792
+ "action": "upsert",
793
+ "packageId": "trolley",
794
+ "namespace": "recipients",
795
+ "rowId": "R-0000000000000000000008",
796
+ "value": {
797
+ "id": "R-0000000000000000000008",
798
+ "referenceId": "CR-1008",
799
+ "email": "pagos@estudionopal.example.com",
800
+ "type": "business",
801
+ "firstName": null,
802
+ "lastName": null,
803
+ "name": "Estudio Nopal S.A. de C.V.",
804
+ "status": "active",
805
+ "complianceStatus": "verified",
806
+ "holdStatus": "none",
807
+ "dob": null,
808
+ "phone": null,
809
+ "language": "es",
810
+ "tags": [
811
+ "studio",
812
+ "mx"
813
+ ],
814
+ "address": {
815
+ "street1": "Av. Reforma 222",
816
+ "street2": null,
817
+ "city": "Ciudad de México",
818
+ "region": "CDMX",
819
+ "postalCode": "06600",
820
+ "country": "MX",
821
+ "phone": null
822
+ },
823
+ "createdAt": "2026-05-12T20:00:00.000Z",
824
+ "updatedAt": "2026-06-02T19:10:00.000Z"
825
+ }
826
+ },
827
+ {
828
+ "action": "upsert",
829
+ "packageId": "trolley",
830
+ "namespace": "recipients",
831
+ "rowId": "R-0000000000000000000009",
832
+ "value": {
833
+ "id": "R-0000000000000000000009",
834
+ "referenceId": "CR-1009",
835
+ "email": "sam.okafor@example.com",
836
+ "type": "individual",
837
+ "firstName": "Sam",
838
+ "lastName": "Okafor",
839
+ "name": "Sam Okafor",
840
+ "status": "incomplete",
841
+ "complianceStatus": "pending",
842
+ "holdStatus": "none",
843
+ "dob": null,
844
+ "phone": null,
845
+ "language": "en",
846
+ "tags": [],
847
+ "address": {
848
+ "street1": null,
849
+ "street2": null,
850
+ "city": null,
851
+ "region": null,
852
+ "postalCode": null,
853
+ "country": null,
854
+ "phone": null
855
+ },
856
+ "createdAt": "2026-09-10T10:00:00.000Z",
857
+ "updatedAt": "2026-09-10T10:00:00.000Z"
858
+ }
859
+ },
860
+ {
861
+ "action": "upsert",
862
+ "packageId": "trolley",
863
+ "namespace": "recipients",
864
+ "rowId": "R-000000000000000000000A",
865
+ "value": {
866
+ "id": "R-000000000000000000000A",
867
+ "referenceId": "CR-1010",
868
+ "email": "harper.lin@example.com",
869
+ "type": "individual",
870
+ "firstName": "Harper",
871
+ "lastName": "Lin",
872
+ "name": "Harper Lin",
873
+ "status": "incomplete",
874
+ "complianceStatus": "pending",
875
+ "holdStatus": "none",
876
+ "dob": null,
877
+ "phone": null,
878
+ "language": "en",
879
+ "tags": [],
880
+ "address": {
881
+ "street1": "300 Pine St",
882
+ "street2": null,
883
+ "city": "Seattle",
884
+ "region": "WA",
885
+ "postalCode": "98101",
886
+ "country": "US",
887
+ "phone": null
888
+ },
889
+ "createdAt": "2026-09-12T15:45:00.000Z",
890
+ "updatedAt": "2026-09-12T15:50:00.000Z"
891
+ }
892
+ },
893
+ {
894
+ "action": "upsert",
895
+ "packageId": "trolley",
896
+ "namespace": "recipients",
897
+ "rowId": "R-000000000000000000000B",
898
+ "value": {
899
+ "id": "R-000000000000000000000B",
900
+ "referenceId": "CR-0990",
901
+ "email": "jordan.blake@example.com",
902
+ "type": "individual",
903
+ "firstName": "Jordan",
904
+ "lastName": "Blake",
905
+ "name": "Jordan Blake",
906
+ "status": "archived",
907
+ "complianceStatus": "verified",
908
+ "holdStatus": "none",
909
+ "dob": null,
910
+ "phone": null,
911
+ "language": "en",
912
+ "tags": [],
913
+ "address": {
914
+ "street1": "19 Alder Ct",
915
+ "street2": null,
916
+ "city": "Boulder",
917
+ "region": "CO",
918
+ "postalCode": "80302",
919
+ "country": "US",
920
+ "phone": null
921
+ },
922
+ "createdAt": "2026-02-10T09:00:00.000Z",
923
+ "updatedAt": "2026-05-04T12:55:00.000Z"
924
+ }
925
+ },
926
+ {
927
+ "action": "upsert",
928
+ "packageId": "trolley",
929
+ "namespace": "recipients",
930
+ "rowId": "R-000000000000000000000C",
931
+ "value": {
932
+ "id": "R-000000000000000000000C",
933
+ "referenceId": "CR-1012",
934
+ "email": "nadia.petrov@example.com",
935
+ "type": "individual",
936
+ "firstName": "Nadia",
937
+ "lastName": "Petrov",
938
+ "name": "Nadia Petrov",
939
+ "status": "suspended",
940
+ "complianceStatus": "verified",
941
+ "holdStatus": "suspended",
942
+ "dob": null,
943
+ "phone": null,
944
+ "language": "en",
945
+ "tags": [],
946
+ "address": {
947
+ "street1": "61 Cedar Blvd",
948
+ "street2": null,
949
+ "city": "Chicago",
950
+ "region": "IL",
951
+ "postalCode": "60614",
952
+ "country": "US",
953
+ "phone": null
954
+ },
955
+ "createdAt": "2026-05-20T16:00:00.000Z",
956
+ "updatedAt": "2026-08-19T11:00:00.000Z"
957
+ }
958
+ },
959
+ {
960
+ "action": "upsert",
961
+ "packageId": "trolley",
962
+ "namespace": "recipients",
963
+ "rowId": "R-000000000000000000000D",
964
+ "value": {
965
+ "id": "R-000000000000000000000D",
966
+ "referenceId": "CR-1013",
967
+ "email": "victor.hale@example.com",
968
+ "type": "individual",
969
+ "firstName": "Victor",
970
+ "lastName": "Hale",
971
+ "name": "Victor Hale",
972
+ "status": "blocked",
973
+ "complianceStatus": "blocked",
974
+ "holdStatus": "none",
975
+ "dob": null,
976
+ "phone": null,
977
+ "language": "en",
978
+ "tags": [],
979
+ "address": {
980
+ "street1": "9 Summit Rd",
981
+ "street2": null,
982
+ "city": "Phoenix",
983
+ "region": "AZ",
984
+ "postalCode": "85004",
985
+ "country": "US",
986
+ "phone": null
987
+ },
988
+ "createdAt": "2026-06-03T10:30:00.000Z",
989
+ "updatedAt": "2026-08-22T14:00:00.000Z"
990
+ }
991
+ },
992
+ {
993
+ "action": "upsert",
994
+ "packageId": "trolley",
995
+ "namespace": "recipients",
996
+ "rowId": "R-000000000000000000000E",
997
+ "value": {
998
+ "id": "R-000000000000000000000E",
999
+ "referenceId": "CR-1014",
1000
+ "email": "ines.duarte@example.com",
1001
+ "type": "individual",
1002
+ "firstName": "Inês",
1003
+ "lastName": "Duarte",
1004
+ "name": "Inês Duarte",
1005
+ "status": "disabled",
1006
+ "complianceStatus": "verified",
1007
+ "holdStatus": "disabled",
1008
+ "dob": null,
1009
+ "phone": null,
1010
+ "language": "en",
1011
+ "tags": [],
1012
+ "address": {
1013
+ "street1": "240 Bay St",
1014
+ "street2": null,
1015
+ "city": "Miami",
1016
+ "region": "FL",
1017
+ "postalCode": "33131",
1018
+ "country": "US",
1019
+ "phone": null
1020
+ },
1021
+ "createdAt": "2026-06-18T12:00:00.000Z",
1022
+ "updatedAt": "2026-09-15T09:30:00.000Z"
1023
+ }
1024
+ },
1025
+ {
1026
+ "action": "upsert",
1027
+ "packageId": "trolley",
1028
+ "namespace": "recipient_accounts",
1029
+ "rowId": "R-0000000000000000000001:A-000000000000000000001d",
1030
+ "value": {
1031
+ "id": "A-000000000000000000001d",
1032
+ "recipientId": "R-0000000000000000000001",
1033
+ "type": "bank-transfer",
1034
+ "primary": true,
1035
+ "status": "primary",
1036
+ "currency": "USD",
1037
+ "country": "US",
1038
+ "accountHolderName": "Maya Castellanos",
1039
+ "accountNumLast4": "2847",
1040
+ "ibanLast4": null,
1041
+ "bankId": null,
1042
+ "branchId": "000123456",
1043
+ "swiftBic": null,
1044
+ "bankName": "Firedrill Test Bank US",
1045
+ "emailAddress": null,
1046
+ "phoneNumber": null,
1047
+ "mailing": null,
1048
+ "disabledAt": null,
1049
+ "createdAt": "2026-03-02T16:30:00.000Z",
1050
+ "updatedAt": "2026-03-02T16:30:00.000Z"
1051
+ }
1052
+ },
1053
+ {
1054
+ "action": "upsert",
1055
+ "packageId": "trolley",
1056
+ "namespace": "recipient_accounts",
1057
+ "rowId": "R-0000000000000000000002:A-000000000000000000001e",
1058
+ "value": {
1059
+ "id": "A-000000000000000000001e",
1060
+ "recipientId": "R-0000000000000000000002",
1061
+ "type": "check",
1062
+ "primary": true,
1063
+ "status": "primary",
1064
+ "currency": "USD",
1065
+ "country": "US",
1066
+ "accountHolderName": null,
1067
+ "accountNumLast4": null,
1068
+ "ibanLast4": null,
1069
+ "bankId": null,
1070
+ "branchId": null,
1071
+ "swiftBic": null,
1072
+ "bankName": null,
1073
+ "emailAddress": null,
1074
+ "phoneNumber": null,
1075
+ "mailing": {
1076
+ "name": "Quarry Lane Films LLC",
1077
+ "street1": "88 Harbor Way",
1078
+ "street2": "Suite 4",
1079
+ "city": "Oakland",
1080
+ "region": "CA",
1081
+ "postal": "94607",
1082
+ "country": "US"
1083
+ },
1084
+ "disabledAt": null,
1085
+ "createdAt": "2026-03-09T18:10:00.000Z",
1086
+ "updatedAt": "2026-03-09T18:10:00.000Z"
1087
+ }
1088
+ },
1089
+ {
1090
+ "action": "upsert",
1091
+ "packageId": "trolley",
1092
+ "namespace": "recipient_accounts",
1093
+ "rowId": "R-0000000000000000000003:A-000000000000000000001f",
1094
+ "value": {
1095
+ "id": "A-000000000000000000001f",
1096
+ "recipientId": "R-0000000000000000000003",
1097
+ "type": "bank-transfer",
1098
+ "primary": true,
1099
+ "status": "primary",
1100
+ "currency": "CAD",
1101
+ "country": "CA",
1102
+ "accountHolderName": "Etienne Tremblay",
1103
+ "accountNumLast4": "5521",
1104
+ "ibanLast4": null,
1105
+ "bankId": "001",
1106
+ "branchId": "00011",
1107
+ "swiftBic": null,
1108
+ "bankName": "Firedrill Test Bank CA",
1109
+ "emailAddress": null,
1110
+ "phoneNumber": null,
1111
+ "mailing": null,
1112
+ "disabledAt": null,
1113
+ "createdAt": "2026-07-02T15:25:00.000Z",
1114
+ "updatedAt": "2026-07-02T15:30:00.000Z"
1115
+ }
1116
+ },
1117
+ {
1118
+ "action": "upsert",
1119
+ "packageId": "trolley",
1120
+ "namespace": "recipient_accounts",
1121
+ "rowId": "R-0000000000000000000003:A-000000000000000000001g",
1122
+ "value": {
1123
+ "id": "A-000000000000000000001g",
1124
+ "recipientId": "R-0000000000000000000003",
1125
+ "type": "paypal",
1126
+ "primary": false,
1127
+ "status": "active",
1128
+ "currency": "USD",
1129
+ "country": "CA",
1130
+ "accountHolderName": null,
1131
+ "accountNumLast4": null,
1132
+ "ibanLast4": null,
1133
+ "bankId": null,
1134
+ "branchId": null,
1135
+ "swiftBic": null,
1136
+ "bankName": null,
1137
+ "emailAddress": "etienne.payouts@example.com",
1138
+ "phoneNumber": null,
1139
+ "mailing": null,
1140
+ "disabledAt": null,
1141
+ "createdAt": "2026-05-01T10:00:00.000Z",
1142
+ "updatedAt": "2026-05-01T10:00:00.000Z"
1143
+ }
1144
+ },
1145
+ {
1146
+ "action": "upsert",
1147
+ "packageId": "trolley",
1148
+ "namespace": "recipient_accounts",
1149
+ "rowId": "R-0000000000000000000003:A-000000000000000000001h",
1150
+ "value": {
1151
+ "id": "A-000000000000000000001h",
1152
+ "recipientId": "R-0000000000000000000003",
1153
+ "type": "bank-transfer",
1154
+ "primary": false,
1155
+ "status": "disabled",
1156
+ "currency": "CAD",
1157
+ "country": "CA",
1158
+ "accountHolderName": "Etienne Tremblay",
1159
+ "accountNumLast4": "0093",
1160
+ "ibanLast4": null,
1161
+ "bankId": "002",
1162
+ "branchId": "00042",
1163
+ "swiftBic": null,
1164
+ "bankName": "Firedrill Test Bank CA",
1165
+ "emailAddress": null,
1166
+ "phoneNumber": null,
1167
+ "mailing": null,
1168
+ "disabledAt": "2026-07-02T15:30:00.000Z",
1169
+ "createdAt": "2026-03-15T14:20:00.000Z",
1170
+ "updatedAt": "2026-07-02T15:30:00.000Z"
1171
+ }
1172
+ },
1173
+ {
1174
+ "action": "upsert",
1175
+ "packageId": "trolley",
1176
+ "namespace": "recipient_accounts",
1177
+ "rowId": "R-0000000000000000000004:A-000000000000000000001i",
1178
+ "value": {
1179
+ "id": "A-000000000000000000001i",
1180
+ "recipientId": "R-0000000000000000000004",
1181
+ "type": "bank-transfer",
1182
+ "primary": true,
1183
+ "status": "primary",
1184
+ "currency": "GBP",
1185
+ "country": "GB",
1186
+ "accountHolderName": "Zoe O'Connell",
1187
+ "accountNumLast4": "1180",
1188
+ "ibanLast4": null,
1189
+ "bankId": null,
1190
+ "branchId": "000404",
1191
+ "swiftBic": null,
1192
+ "bankName": "Firedrill Test Bank GB",
1193
+ "emailAddress": null,
1194
+ "phoneNumber": null,
1195
+ "mailing": null,
1196
+ "disabledAt": null,
1197
+ "createdAt": "2026-04-01T11:10:00.000Z",
1198
+ "updatedAt": "2026-04-01T11:10:00.000Z"
1199
+ }
1200
+ },
1201
+ {
1202
+ "action": "upsert",
1203
+ "packageId": "trolley",
1204
+ "namespace": "recipient_accounts",
1205
+ "rowId": "R-0000000000000000000005:A-000000000000000000001j",
1206
+ "value": {
1207
+ "id": "A-000000000000000000001j",
1208
+ "recipientId": "R-0000000000000000000005",
1209
+ "type": "bank-transfer",
1210
+ "primary": true,
1211
+ "status": "primary",
1212
+ "currency": "EUR",
1213
+ "country": "DE",
1214
+ "accountHolderName": "Lukasz Wisniewski",
1215
+ "accountNumLast4": null,
1216
+ "ibanLast4": "3000",
1217
+ "bankId": null,
1218
+ "branchId": null,
1219
+ "swiftBic": "FDTBDEFFXXX",
1220
+ "bankName": "Firedrill Test Bank DE",
1221
+ "emailAddress": null,
1222
+ "phoneNumber": null,
1223
+ "mailing": null,
1224
+ "disabledAt": null,
1225
+ "createdAt": "2026-04-08T09:45:00.000Z",
1226
+ "updatedAt": "2026-04-08T09:45:00.000Z"
1227
+ }
1228
+ },
1229
+ {
1230
+ "action": "upsert",
1231
+ "packageId": "trolley",
1232
+ "namespace": "recipient_accounts",
1233
+ "rowId": "R-0000000000000000000006:A-000000000000000000001k",
1234
+ "value": {
1235
+ "id": "A-000000000000000000001k",
1236
+ "recipientId": "R-0000000000000000000006",
1237
+ "type": "paypal",
1238
+ "primary": true,
1239
+ "status": "primary",
1240
+ "currency": "USD",
1241
+ "country": "US",
1242
+ "accountHolderName": null,
1243
+ "accountNumLast4": null,
1244
+ "ibanLast4": null,
1245
+ "bankId": null,
1246
+ "branchId": null,
1247
+ "swiftBic": null,
1248
+ "bankName": null,
1249
+ "emailAddress": "priya.raman.payouts@example.com",
1250
+ "phoneNumber": null,
1251
+ "mailing": null,
1252
+ "disabledAt": null,
1253
+ "createdAt": "2026-04-20T17:40:00.000Z",
1254
+ "updatedAt": "2026-04-20T17:40:00.000Z"
1255
+ }
1256
+ },
1257
+ {
1258
+ "action": "upsert",
1259
+ "packageId": "trolley",
1260
+ "namespace": "recipient_accounts",
1261
+ "rowId": "R-0000000000000000000007:A-000000000000000000001l",
1262
+ "value": {
1263
+ "id": "A-000000000000000000001l",
1264
+ "recipientId": "R-0000000000000000000007",
1265
+ "type": "venmo",
1266
+ "primary": true,
1267
+ "status": "primary",
1268
+ "currency": "USD",
1269
+ "country": "US",
1270
+ "accountHolderName": null,
1271
+ "accountNumLast4": null,
1272
+ "ibanLast4": null,
1273
+ "bankId": null,
1274
+ "branchId": null,
1275
+ "swiftBic": null,
1276
+ "bankName": null,
1277
+ "emailAddress": null,
1278
+ "phoneNumber": "3035550107",
1279
+ "mailing": null,
1280
+ "disabledAt": null,
1281
+ "createdAt": "2026-05-04T13:20:00.000Z",
1282
+ "updatedAt": "2026-05-04T13:20:00.000Z"
1283
+ }
1284
+ },
1285
+ {
1286
+ "action": "upsert",
1287
+ "packageId": "trolley",
1288
+ "namespace": "recipient_accounts",
1289
+ "rowId": "R-0000000000000000000008:A-000000000000000000001m",
1290
+ "value": {
1291
+ "id": "A-000000000000000000001m",
1292
+ "recipientId": "R-0000000000000000000008",
1293
+ "type": "bank-transfer",
1294
+ "primary": true,
1295
+ "status": "primary",
1296
+ "currency": "MXN",
1297
+ "country": "MX",
1298
+ "accountHolderName": "Estudio Nopal S.A. de C.V.",
1299
+ "accountNumLast4": "4410",
1300
+ "ibanLast4": null,
1301
+ "bankId": null,
1302
+ "branchId": null,
1303
+ "swiftBic": null,
1304
+ "bankName": "Firedrill Test Bank MX",
1305
+ "emailAddress": null,
1306
+ "phoneNumber": null,
1307
+ "mailing": null,
1308
+ "disabledAt": null,
1309
+ "createdAt": "2026-05-12T20:15:00.000Z",
1310
+ "updatedAt": "2026-06-02T19:10:00.000Z"
1311
+ }
1312
+ },
1313
+ {
1314
+ "action": "upsert",
1315
+ "packageId": "trolley",
1316
+ "namespace": "recipient_accounts",
1317
+ "rowId": "R-000000000000000000000C:A-000000000000000000001n",
1318
+ "value": {
1319
+ "id": "A-000000000000000000001n",
1320
+ "recipientId": "R-000000000000000000000C",
1321
+ "type": "bank-transfer",
1322
+ "primary": true,
1323
+ "status": "primary",
1324
+ "currency": "USD",
1325
+ "country": "US",
1326
+ "accountHolderName": "Nadia Petrov",
1327
+ "accountNumLast4": "7731",
1328
+ "ibanLast4": null,
1329
+ "bankId": null,
1330
+ "branchId": "000654321",
1331
+ "swiftBic": null,
1332
+ "bankName": "Firedrill Test Bank US",
1333
+ "emailAddress": null,
1334
+ "phoneNumber": null,
1335
+ "mailing": null,
1336
+ "disabledAt": null,
1337
+ "createdAt": "2026-05-20T16:10:00.000Z",
1338
+ "updatedAt": "2026-05-20T16:10:00.000Z"
1339
+ }
1340
+ },
1341
+ {
1342
+ "action": "upsert",
1343
+ "packageId": "trolley",
1344
+ "namespace": "recipient_accounts",
1345
+ "rowId": "R-000000000000000000000D:A-000000000000000000001o",
1346
+ "value": {
1347
+ "id": "A-000000000000000000001o",
1348
+ "recipientId": "R-000000000000000000000D",
1349
+ "type": "paypal",
1350
+ "primary": true,
1351
+ "status": "primary",
1352
+ "currency": "USD",
1353
+ "country": "US",
1354
+ "accountHolderName": null,
1355
+ "accountNumLast4": null,
1356
+ "ibanLast4": null,
1357
+ "bankId": null,
1358
+ "branchId": null,
1359
+ "swiftBic": null,
1360
+ "bankName": null,
1361
+ "emailAddress": "victor.hale.payouts@example.com",
1362
+ "phoneNumber": null,
1363
+ "mailing": null,
1364
+ "disabledAt": null,
1365
+ "createdAt": "2026-06-03T10:40:00.000Z",
1366
+ "updatedAt": "2026-06-03T10:40:00.000Z"
1367
+ }
1368
+ },
1369
+ {
1370
+ "action": "upsert",
1371
+ "packageId": "trolley",
1372
+ "namespace": "recipient_accounts",
1373
+ "rowId": "R-000000000000000000000E:A-000000000000000000001p",
1374
+ "value": {
1375
+ "id": "A-000000000000000000001p",
1376
+ "recipientId": "R-000000000000000000000E",
1377
+ "type": "bank-transfer",
1378
+ "primary": true,
1379
+ "status": "primary",
1380
+ "currency": "USD",
1381
+ "country": "US",
1382
+ "accountHolderName": "Ines Duarte",
1383
+ "accountNumLast4": "6604",
1384
+ "ibanLast4": null,
1385
+ "bankId": null,
1386
+ "branchId": "000777888",
1387
+ "swiftBic": null,
1388
+ "bankName": "Firedrill Test Bank US",
1389
+ "emailAddress": null,
1390
+ "phoneNumber": null,
1391
+ "mailing": null,
1392
+ "disabledAt": null,
1393
+ "createdAt": "2026-06-18T12:10:00.000Z",
1394
+ "updatedAt": "2026-06-18T12:10:00.000Z"
1395
+ }
1396
+ },
1397
+ {
1398
+ "action": "upsert",
1399
+ "packageId": "trolley",
1400
+ "namespace": "batches",
1401
+ "rowId": "B-000000000000000000003F",
1402
+ "value": {
1403
+ "id": "B-000000000000000000003F",
1404
+ "status": "open",
1405
+ "currency": "USD",
1406
+ "description": "September week 3 creators",
1407
+ "tags": [
1408
+ "weekly"
1409
+ ],
1410
+ "quoteExpiredAt": null,
1411
+ "sentAt": null,
1412
+ "completedAt": null,
1413
+ "createdAt": "2026-09-15T09:10:00.000Z",
1414
+ "updatedAt": "2026-09-15T09:40:00.000Z"
1415
+ }
1416
+ },
1417
+ {
1418
+ "action": "upsert",
1419
+ "packageId": "trolley",
1420
+ "namespace": "batches",
1421
+ "rowId": "B-000000000000000000003G",
1422
+ "value": {
1423
+ "id": "B-000000000000000000003G",
1424
+ "status": "open",
1425
+ "currency": "USD",
1426
+ "description": "EU and UK editors",
1427
+ "tags": [
1428
+ "editors",
1429
+ "fx"
1430
+ ],
1431
+ "quoteExpiredAt": "2026-09-15T12:30:00.000Z",
1432
+ "sentAt": null,
1433
+ "completedAt": null,
1434
+ "createdAt": "2026-09-15T10:45:00.000Z",
1435
+ "updatedAt": "2026-09-15T11:00:00.000Z"
1436
+ }
1437
+ },
1438
+ {
1439
+ "action": "upsert",
1440
+ "packageId": "trolley",
1441
+ "namespace": "batches",
1442
+ "rowId": "B-000000000000000000003H",
1443
+ "value": {
1444
+ "id": "B-000000000000000000003H",
1445
+ "status": "open",
1446
+ "currency": "USD",
1447
+ "description": "Q3 studio retainers",
1448
+ "tags": [
1449
+ "retainer"
1450
+ ],
1451
+ "quoteExpiredAt": null,
1452
+ "sentAt": null,
1453
+ "completedAt": null,
1454
+ "createdAt": "2026-09-14T15:00:00.000Z",
1455
+ "updatedAt": "2026-09-14T15:20:00.000Z"
1456
+ }
1457
+ },
1458
+ {
1459
+ "action": "upsert",
1460
+ "packageId": "trolley",
1461
+ "namespace": "batches",
1462
+ "rowId": "B-000000000000000000003I",
1463
+ "value": {
1464
+ "id": "B-000000000000000000003I",
1465
+ "status": "open",
1466
+ "currency": "USD",
1467
+ "description": "Mixed status payout",
1468
+ "tags": [],
1469
+ "quoteExpiredAt": null,
1470
+ "sentAt": null,
1471
+ "completedAt": null,
1472
+ "createdAt": "2026-09-14T16:00:00.000Z",
1473
+ "updatedAt": "2026-09-14T16:05:00.000Z"
1474
+ }
1475
+ },
1476
+ {
1477
+ "action": "upsert",
1478
+ "packageId": "trolley",
1479
+ "namespace": "batches",
1480
+ "rowId": "B-000000000000000000003J",
1481
+ "value": {
1482
+ "id": "B-000000000000000000003J",
1483
+ "status": "open",
1484
+ "currency": "USD",
1485
+ "description": "Check below minimum",
1486
+ "tags": [],
1487
+ "quoteExpiredAt": null,
1488
+ "sentAt": null,
1489
+ "completedAt": null,
1490
+ "createdAt": "2026-09-15T08:00:00.000Z",
1491
+ "updatedAt": "2026-09-15T08:02:00.000Z"
1492
+ }
1493
+ },
1494
+ {
1495
+ "action": "upsert",
1496
+ "packageId": "trolley",
1497
+ "namespace": "batches",
1498
+ "rowId": "B-000000000000000000003K",
1499
+ "value": {
1500
+ "id": "B-000000000000000000003K",
1501
+ "status": "open",
1502
+ "currency": "USD",
1503
+ "description": "Draft – October",
1504
+ "tags": [
1505
+ "draft"
1506
+ ],
1507
+ "quoteExpiredAt": null,
1508
+ "sentAt": null,
1509
+ "completedAt": null,
1510
+ "createdAt": "2026-09-15T13:30:00.000Z",
1511
+ "updatedAt": "2026-09-15T13:30:00.000Z"
1512
+ }
1513
+ },
1514
+ {
1515
+ "action": "upsert",
1516
+ "packageId": "trolley",
1517
+ "namespace": "batches",
1518
+ "rowId": "B-000000000000000000003L",
1519
+ "value": {
1520
+ "id": "B-000000000000000000003L",
1521
+ "status": "complete",
1522
+ "currency": "USD",
1523
+ "description": "August week 1",
1524
+ "tags": [
1525
+ "weekly"
1526
+ ],
1527
+ "quoteExpiredAt": null,
1528
+ "sentAt": "2026-08-07T15:00:00.000Z",
1529
+ "completedAt": "2026-08-07T15:00:00.000Z",
1530
+ "createdAt": "2026-08-06T10:00:00.000Z",
1531
+ "updatedAt": "2026-08-07T15:00:00.000Z"
1532
+ }
1533
+ },
1534
+ {
1535
+ "action": "upsert",
1536
+ "packageId": "trolley",
1537
+ "namespace": "batches",
1538
+ "rowId": "B-000000000000000000003M",
1539
+ "value": {
1540
+ "id": "B-000000000000000000003M",
1541
+ "status": "complete",
1542
+ "currency": "USD",
1543
+ "description": "August week 2",
1544
+ "tags": [
1545
+ "weekly"
1546
+ ],
1547
+ "quoteExpiredAt": "2026-08-14T16:30:00.000Z",
1548
+ "sentAt": "2026-08-14T15:05:00.000Z",
1549
+ "completedAt": "2026-08-14T15:05:00.000Z",
1550
+ "createdAt": "2026-08-13T10:00:00.000Z",
1551
+ "updatedAt": "2026-08-14T15:05:00.000Z"
1552
+ }
1553
+ },
1554
+ {
1555
+ "action": "upsert",
1556
+ "packageId": "trolley",
1557
+ "namespace": "batches",
1558
+ "rowId": "B-000000000000000000003N",
1559
+ "value": {
1560
+ "id": "B-000000000000000000003N",
1561
+ "status": "complete",
1562
+ "currency": "USD",
1563
+ "description": "August week 3",
1564
+ "tags": [
1565
+ "weekly",
1566
+ "fx"
1567
+ ],
1568
+ "quoteExpiredAt": "2026-08-21T16:30:00.000Z",
1569
+ "sentAt": "2026-08-21T15:10:00.000Z",
1570
+ "completedAt": "2026-08-21T15:10:00.000Z",
1571
+ "createdAt": "2026-08-20T10:00:00.000Z",
1572
+ "updatedAt": "2026-08-21T15:10:00.000Z"
1573
+ }
1574
+ },
1575
+ {
1576
+ "action": "upsert",
1577
+ "packageId": "trolley",
1578
+ "namespace": "batches",
1579
+ "rowId": "B-000000000000000000003O",
1580
+ "value": {
1581
+ "id": "B-000000000000000000003O",
1582
+ "status": "complete",
1583
+ "currency": "USD",
1584
+ "description": "August retainers",
1585
+ "tags": [
1586
+ "retainer",
1587
+ "fx"
1588
+ ],
1589
+ "quoteExpiredAt": "2026-08-28T16:00:00.000Z",
1590
+ "sentAt": "2026-08-28T14:45:00.000Z",
1591
+ "completedAt": "2026-08-28T14:45:00.000Z",
1592
+ "createdAt": "2026-08-27T09:00:00.000Z",
1593
+ "updatedAt": "2026-08-28T14:45:00.000Z"
1594
+ }
1595
+ },
1596
+ {
1597
+ "action": "upsert",
1598
+ "packageId": "trolley",
1599
+ "namespace": "batches",
1600
+ "rowId": "B-000000000000000000003P",
1601
+ "value": {
1602
+ "id": "B-000000000000000000003P",
1603
+ "status": "failed",
1604
+ "currency": "USD",
1605
+ "description": "Late August correction",
1606
+ "tags": [],
1607
+ "quoteExpiredAt": null,
1608
+ "sentAt": "2026-08-29T11:00:00.000Z",
1609
+ "completedAt": "2026-08-29T11:00:00.000Z",
1610
+ "createdAt": "2026-08-29T10:30:00.000Z",
1611
+ "updatedAt": "2026-08-29T11:00:00.000Z"
1612
+ }
1613
+ },
1614
+ {
1615
+ "action": "upsert",
1616
+ "packageId": "trolley",
1617
+ "namespace": "payments",
1618
+ "rowId": "B-000000000000000000003F:P-000000000000000000004r",
1619
+ "value": {
1620
+ "id": "P-000000000000000000004r",
1621
+ "batchId": "B-000000000000000000003F",
1622
+ "recipientId": "R-0000000000000000000001",
1623
+ "accountId": "A-000000000000000000001d",
1624
+ "status": "pending",
1625
+ "amountSide": "source",
1626
+ "sourceAmount": "500.00",
1627
+ "sourceCurrency": "USD",
1628
+ "targetAmount": "499.00",
1629
+ "targetCurrency": "USD",
1630
+ "exchangeRate": "1.000000",
1631
+ "fees": "1.00",
1632
+ "recipientFees": "1.00",
1633
+ "merchantFees": "0.00",
1634
+ "coverFees": false,
1635
+ "payoutMethod": "bank-transfer",
1636
+ "memo": "Cover illustrations, issue 14",
1637
+ "externalId": "INV-2026-0911",
1638
+ "category": null,
1639
+ "tags": [],
1640
+ "failureMessage": null,
1641
+ "initiatedAt": null,
1642
+ "processedAt": null,
1643
+ "createdAt": "2026-09-15T09:10:00.000Z",
1644
+ "updatedAt": "2026-09-15T09:40:00.000Z"
1645
+ }
1646
+ },
1647
+ {
1648
+ "action": "upsert",
1649
+ "packageId": "trolley",
1650
+ "namespace": "payments",
1651
+ "rowId": "B-000000000000000000003F:P-000000000000000000004s",
1652
+ "value": {
1653
+ "id": "P-000000000000000000004s",
1654
+ "batchId": "B-000000000000000000003F",
1655
+ "recipientId": "R-0000000000000000000006",
1656
+ "accountId": "A-000000000000000000001k",
1657
+ "status": "pending",
1658
+ "amountSide": "source",
1659
+ "sourceAmount": "440.00",
1660
+ "sourceCurrency": "USD",
1661
+ "targetAmount": "440.00",
1662
+ "targetCurrency": "USD",
1663
+ "exchangeRate": "1.000000",
1664
+ "fees": "1.00",
1665
+ "recipientFees": "0.00",
1666
+ "merchantFees": "1.00",
1667
+ "coverFees": true,
1668
+ "payoutMethod": "paypal",
1669
+ "memo": "Trailer edit",
1670
+ "externalId": "INV-2026-0912",
1671
+ "category": null,
1672
+ "tags": [],
1673
+ "failureMessage": null,
1674
+ "initiatedAt": null,
1675
+ "processedAt": null,
1676
+ "createdAt": "2026-09-15T09:10:00.000Z",
1677
+ "updatedAt": "2026-09-15T09:40:00.000Z"
1678
+ }
1679
+ },
1680
+ {
1681
+ "action": "upsert",
1682
+ "packageId": "trolley",
1683
+ "namespace": "payments",
1684
+ "rowId": "B-000000000000000000003F:P-000000000000000000004t",
1685
+ "value": {
1686
+ "id": "P-000000000000000000004t",
1687
+ "batchId": "B-000000000000000000003F",
1688
+ "recipientId": "R-0000000000000000000007",
1689
+ "accountId": "A-000000000000000000001l",
1690
+ "status": "pending",
1691
+ "amountSide": "source",
1692
+ "sourceAmount": "300.00",
1693
+ "sourceCurrency": "USD",
1694
+ "targetAmount": "299.25",
1695
+ "targetCurrency": "USD",
1696
+ "exchangeRate": "1.000000",
1697
+ "fees": "0.75",
1698
+ "recipientFees": "0.75",
1699
+ "merchantFees": "0.00",
1700
+ "coverFees": false,
1701
+ "payoutMethod": "venmo",
1702
+ "memo": "Title sequence royalties",
1703
+ "externalId": null,
1704
+ "category": "royalties",
1705
+ "tags": [],
1706
+ "failureMessage": null,
1707
+ "initiatedAt": null,
1708
+ "processedAt": null,
1709
+ "createdAt": "2026-09-15T09:10:00.000Z",
1710
+ "updatedAt": "2026-09-15T09:40:00.000Z"
1711
+ }
1712
+ },
1713
+ {
1714
+ "action": "upsert",
1715
+ "packageId": "trolley",
1716
+ "namespace": "payments",
1717
+ "rowId": "B-000000000000000000003G:P-000000000000000000004u",
1718
+ "value": {
1719
+ "id": "P-000000000000000000004u",
1720
+ "batchId": "B-000000000000000000003G",
1721
+ "recipientId": "R-0000000000000000000004",
1722
+ "accountId": "A-000000000000000000001i",
1723
+ "status": "pending",
1724
+ "amountSide": "source",
1725
+ "sourceAmount": "800.00",
1726
+ "sourceCurrency": "USD",
1727
+ "targetAmount": "624.02",
1728
+ "targetCurrency": "GBP",
1729
+ "exchangeRate": "0.781000",
1730
+ "fees": "1.00",
1731
+ "recipientFees": "1.00",
1732
+ "merchantFees": "0.00",
1733
+ "coverFees": false,
1734
+ "payoutMethod": "bank-transfer",
1735
+ "memo": "Documentary rough cut",
1736
+ "externalId": null,
1737
+ "category": null,
1738
+ "tags": [],
1739
+ "failureMessage": null,
1740
+ "initiatedAt": null,
1741
+ "processedAt": null,
1742
+ "createdAt": "2026-09-15T10:45:00.000Z",
1743
+ "updatedAt": "2026-09-15T11:00:00.000Z"
1744
+ }
1745
+ },
1746
+ {
1747
+ "action": "upsert",
1748
+ "packageId": "trolley",
1749
+ "namespace": "payments",
1750
+ "rowId": "B-000000000000000000003G:P-000000000000000000004v",
1751
+ "value": {
1752
+ "id": "P-000000000000000000004v",
1753
+ "batchId": "B-000000000000000000003G",
1754
+ "recipientId": "R-0000000000000000000005",
1755
+ "accountId": "A-000000000000000000001j",
1756
+ "status": "pending",
1757
+ "amountSide": "source",
1758
+ "sourceAmount": "650.00",
1759
+ "sourceCurrency": "USD",
1760
+ "targetAmount": "591.89",
1761
+ "targetCurrency": "EUR",
1762
+ "exchangeRate": "0.912000",
1763
+ "fees": "1.00",
1764
+ "recipientFees": "1.00",
1765
+ "merchantFees": "0.00",
1766
+ "coverFees": false,
1767
+ "payoutMethod": "bank-transfer",
1768
+ "memo": "Color grade, episode 3",
1769
+ "externalId": null,
1770
+ "category": null,
1771
+ "tags": [],
1772
+ "failureMessage": null,
1773
+ "initiatedAt": null,
1774
+ "processedAt": null,
1775
+ "createdAt": "2026-09-15T10:45:00.000Z",
1776
+ "updatedAt": "2026-09-15T11:00:00.000Z"
1777
+ }
1778
+ },
1779
+ {
1780
+ "action": "upsert",
1781
+ "packageId": "trolley",
1782
+ "namespace": "payments",
1783
+ "rowId": "B-000000000000000000003H:P-000000000000000000004w",
1784
+ "value": {
1785
+ "id": "P-000000000000000000004w",
1786
+ "batchId": "B-000000000000000000003H",
1787
+ "recipientId": "R-0000000000000000000001",
1788
+ "accountId": "A-000000000000000000001d",
1789
+ "status": "pending",
1790
+ "amountSide": "source",
1791
+ "sourceAmount": "12000.00",
1792
+ "sourceCurrency": "USD",
1793
+ "targetAmount": "11999.00",
1794
+ "targetCurrency": "USD",
1795
+ "exchangeRate": "1.000000",
1796
+ "fees": "1.00",
1797
+ "recipientFees": "1.00",
1798
+ "merchantFees": "0.00",
1799
+ "coverFees": false,
1800
+ "payoutMethod": "bank-transfer",
1801
+ "memo": "Q3 retainer",
1802
+ "externalId": null,
1803
+ "category": null,
1804
+ "tags": [],
1805
+ "failureMessage": null,
1806
+ "initiatedAt": null,
1807
+ "processedAt": null,
1808
+ "createdAt": "2026-09-14T15:00:00.000Z",
1809
+ "updatedAt": "2026-09-14T15:20:00.000Z"
1810
+ }
1811
+ },
1812
+ {
1813
+ "action": "upsert",
1814
+ "packageId": "trolley",
1815
+ "namespace": "payments",
1816
+ "rowId": "B-000000000000000000003H:P-000000000000000000004x",
1817
+ "value": {
1818
+ "id": "P-000000000000000000004x",
1819
+ "batchId": "B-000000000000000000003H",
1820
+ "recipientId": "R-0000000000000000000002",
1821
+ "accountId": "A-000000000000000000001e",
1822
+ "status": "pending",
1823
+ "amountSide": "source",
1824
+ "sourceAmount": "12000.00",
1825
+ "sourceCurrency": "USD",
1826
+ "targetAmount": "11997.50",
1827
+ "targetCurrency": "USD",
1828
+ "exchangeRate": "1.000000",
1829
+ "fees": "2.50",
1830
+ "recipientFees": "2.50",
1831
+ "merchantFees": "0.00",
1832
+ "coverFees": false,
1833
+ "payoutMethod": "check",
1834
+ "memo": "Q3 studio retainer",
1835
+ "externalId": null,
1836
+ "category": null,
1837
+ "tags": [],
1838
+ "failureMessage": null,
1839
+ "initiatedAt": null,
1840
+ "processedAt": null,
1841
+ "createdAt": "2026-09-14T15:00:00.000Z",
1842
+ "updatedAt": "2026-09-14T15:20:00.000Z"
1843
+ }
1844
+ },
1845
+ {
1846
+ "action": "upsert",
1847
+ "packageId": "trolley",
1848
+ "namespace": "payments",
1849
+ "rowId": "B-000000000000000000003I:P-000000000000000000004y",
1850
+ "value": {
1851
+ "id": "P-000000000000000000004y",
1852
+ "batchId": "B-000000000000000000003I",
1853
+ "recipientId": "R-0000000000000000000001",
1854
+ "accountId": "A-000000000000000000001d",
1855
+ "status": "pending",
1856
+ "amountSide": "source",
1857
+ "sourceAmount": "150.00",
1858
+ "sourceCurrency": "USD",
1859
+ "targetAmount": "149.00",
1860
+ "targetCurrency": "USD",
1861
+ "exchangeRate": "1.000000",
1862
+ "fees": "1.00",
1863
+ "recipientFees": "1.00",
1864
+ "merchantFees": "0.00",
1865
+ "coverFees": false,
1866
+ "payoutMethod": "bank-transfer",
1867
+ "memo": "Storyboard revisions",
1868
+ "externalId": null,
1869
+ "category": null,
1870
+ "tags": [],
1871
+ "failureMessage": null,
1872
+ "initiatedAt": null,
1873
+ "processedAt": null,
1874
+ "createdAt": "2026-09-14T16:00:00.000Z",
1875
+ "updatedAt": "2026-09-14T16:05:00.000Z"
1876
+ }
1877
+ },
1878
+ {
1879
+ "action": "upsert",
1880
+ "packageId": "trolley",
1881
+ "namespace": "payments",
1882
+ "rowId": "B-000000000000000000003I:P-000000000000000000004z",
1883
+ "value": {
1884
+ "id": "P-000000000000000000004z",
1885
+ "batchId": "B-000000000000000000003I",
1886
+ "recipientId": "R-000000000000000000000E",
1887
+ "accountId": "A-000000000000000000001p",
1888
+ "status": "pending",
1889
+ "amountSide": "source",
1890
+ "sourceAmount": "200.00",
1891
+ "sourceCurrency": "USD",
1892
+ "targetAmount": "199.00",
1893
+ "targetCurrency": "USD",
1894
+ "exchangeRate": "1.000000",
1895
+ "fees": "1.00",
1896
+ "recipientFees": "1.00",
1897
+ "merchantFees": "0.00",
1898
+ "coverFees": false,
1899
+ "payoutMethod": "bank-transfer",
1900
+ "memo": "Sound design",
1901
+ "externalId": null,
1902
+ "category": null,
1903
+ "tags": [],
1904
+ "failureMessage": null,
1905
+ "initiatedAt": null,
1906
+ "processedAt": null,
1907
+ "createdAt": "2026-09-14T16:00:00.000Z",
1908
+ "updatedAt": "2026-09-14T16:05:00.000Z"
1909
+ }
1910
+ },
1911
+ {
1912
+ "action": "upsert",
1913
+ "packageId": "trolley",
1914
+ "namespace": "payments",
1915
+ "rowId": "B-000000000000000000003J:P-0000000000000000000050",
1916
+ "value": {
1917
+ "id": "P-0000000000000000000050",
1918
+ "batchId": "B-000000000000000000003J",
1919
+ "recipientId": "R-0000000000000000000002",
1920
+ "accountId": "A-000000000000000000001e",
1921
+ "status": "pending",
1922
+ "amountSide": "source",
1923
+ "sourceAmount": "12.00",
1924
+ "sourceCurrency": "USD",
1925
+ "targetAmount": "9.50",
1926
+ "targetCurrency": "USD",
1927
+ "exchangeRate": "1.000000",
1928
+ "fees": "2.50",
1929
+ "recipientFees": "2.50",
1930
+ "merchantFees": "0.00",
1931
+ "coverFees": false,
1932
+ "payoutMethod": "check",
1933
+ "memo": "Stock footage licence",
1934
+ "externalId": null,
1935
+ "category": null,
1936
+ "tags": [],
1937
+ "failureMessage": null,
1938
+ "initiatedAt": null,
1939
+ "processedAt": null,
1940
+ "createdAt": "2026-09-15T08:00:00.000Z",
1941
+ "updatedAt": "2026-09-15T08:02:00.000Z"
1942
+ }
1943
+ },
1944
+ {
1945
+ "action": "upsert",
1946
+ "packageId": "trolley",
1947
+ "namespace": "payments",
1948
+ "rowId": "B-000000000000000000003L:P-0000000000000000000051",
1949
+ "value": {
1950
+ "id": "P-0000000000000000000051",
1951
+ "batchId": "B-000000000000000000003L",
1952
+ "recipientId": "R-0000000000000000000001",
1953
+ "accountId": "A-000000000000000000001d",
1954
+ "status": "processed",
1955
+ "amountSide": "source",
1956
+ "sourceAmount": "320.00",
1957
+ "sourceCurrency": "USD",
1958
+ "targetAmount": "319.00",
1959
+ "targetCurrency": "USD",
1960
+ "exchangeRate": "1.000000",
1961
+ "fees": "1.00",
1962
+ "recipientFees": "1.00",
1963
+ "merchantFees": "0.00",
1964
+ "coverFees": false,
1965
+ "payoutMethod": "bank-transfer",
1966
+ "memo": "Poster art",
1967
+ "externalId": null,
1968
+ "category": null,
1969
+ "tags": [],
1970
+ "failureMessage": null,
1971
+ "initiatedAt": "2026-08-07T15:00:00.000Z",
1972
+ "processedAt": "2026-08-07T15:00:00.000Z",
1973
+ "createdAt": "2026-08-06T10:00:00.000Z",
1974
+ "updatedAt": "2026-08-07T15:00:00.000Z"
1975
+ }
1976
+ },
1977
+ {
1978
+ "action": "upsert",
1979
+ "packageId": "trolley",
1980
+ "namespace": "payments",
1981
+ "rowId": "B-000000000000000000003L:P-0000000000000000000052",
1982
+ "value": {
1983
+ "id": "P-0000000000000000000052",
1984
+ "batchId": "B-000000000000000000003L",
1985
+ "recipientId": "R-0000000000000000000006",
1986
+ "accountId": "A-000000000000000000001k",
1987
+ "status": "processed",
1988
+ "amountSide": "source",
1989
+ "sourceAmount": "180.00",
1990
+ "sourceCurrency": "USD",
1991
+ "targetAmount": "179.00",
1992
+ "targetCurrency": "USD",
1993
+ "exchangeRate": "1.000000",
1994
+ "fees": "1.00",
1995
+ "recipientFees": "1.00",
1996
+ "merchantFees": "0.00",
1997
+ "coverFees": false,
1998
+ "payoutMethod": "paypal",
1999
+ "memo": "Social cutdowns",
2000
+ "externalId": null,
2001
+ "category": null,
2002
+ "tags": [],
2003
+ "failureMessage": null,
2004
+ "initiatedAt": "2026-08-07T15:00:00.000Z",
2005
+ "processedAt": "2026-08-07T15:00:00.000Z",
2006
+ "createdAt": "2026-08-06T10:00:00.000Z",
2007
+ "updatedAt": "2026-08-07T15:00:00.000Z"
2008
+ }
2009
+ },
2010
+ {
2011
+ "action": "upsert",
2012
+ "packageId": "trolley",
2013
+ "namespace": "payments",
2014
+ "rowId": "B-000000000000000000003L:P-0000000000000000000053",
2015
+ "value": {
2016
+ "id": "P-0000000000000000000053",
2017
+ "batchId": "B-000000000000000000003L",
2018
+ "recipientId": "R-0000000000000000000008",
2019
+ "accountId": "A-000000000000000000001m",
2020
+ "status": "processed",
2021
+ "amountSide": "source",
2022
+ "sourceAmount": "500.00",
2023
+ "sourceCurrency": "USD",
2024
+ "targetAmount": "8602.76",
2025
+ "targetCurrency": "MXN",
2026
+ "exchangeRate": "17.240000",
2027
+ "fees": "1.00",
2028
+ "recipientFees": "1.00",
2029
+ "merchantFees": "0.00",
2030
+ "coverFees": false,
2031
+ "payoutMethod": "bank-transfer",
2032
+ "memo": "Motion graphics package",
2033
+ "externalId": null,
2034
+ "category": null,
2035
+ "tags": [],
2036
+ "failureMessage": null,
2037
+ "initiatedAt": "2026-08-07T15:00:00.000Z",
2038
+ "processedAt": "2026-08-07T15:00:00.000Z",
2039
+ "createdAt": "2026-08-06T10:00:00.000Z",
2040
+ "updatedAt": "2026-08-07T15:00:00.000Z"
2041
+ }
2042
+ },
2043
+ {
2044
+ "action": "upsert",
2045
+ "packageId": "trolley",
2046
+ "namespace": "payments",
2047
+ "rowId": "B-000000000000000000003M:P-0000000000000000000054",
2048
+ "value": {
2049
+ "id": "P-0000000000000000000054",
2050
+ "batchId": "B-000000000000000000003M",
2051
+ "recipientId": "R-0000000000000000000003",
2052
+ "accountId": "A-000000000000000000001f",
2053
+ "status": "processed",
2054
+ "amountSide": "source",
2055
+ "sourceAmount": "400.00",
2056
+ "sourceCurrency": "USD",
2057
+ "targetAmount": "539.45",
2058
+ "targetCurrency": "CAD",
2059
+ "exchangeRate": "1.352000",
2060
+ "fees": "1.00",
2061
+ "recipientFees": "1.00",
2062
+ "merchantFees": "0.00",
2063
+ "coverFees": false,
2064
+ "payoutMethod": "bank-transfer",
2065
+ "memo": "French subtitles",
2066
+ "externalId": null,
2067
+ "category": null,
2068
+ "tags": [],
2069
+ "failureMessage": null,
2070
+ "initiatedAt": "2026-08-14T15:05:00.000Z",
2071
+ "processedAt": "2026-08-14T15:05:00.000Z",
2072
+ "createdAt": "2026-08-13T10:00:00.000Z",
2073
+ "updatedAt": "2026-08-14T15:05:00.000Z"
2074
+ }
2075
+ },
2076
+ {
2077
+ "action": "upsert",
2078
+ "packageId": "trolley",
2079
+ "namespace": "payments",
2080
+ "rowId": "B-000000000000000000003M:P-0000000000000000000055",
2081
+ "value": {
2082
+ "id": "P-0000000000000000000055",
2083
+ "batchId": "B-000000000000000000003M",
2084
+ "recipientId": "R-0000000000000000000007",
2085
+ "accountId": "A-000000000000000000001l",
2086
+ "status": "processed",
2087
+ "amountSide": "source",
2088
+ "sourceAmount": "90.00",
2089
+ "sourceCurrency": "USD",
2090
+ "targetAmount": "89.25",
2091
+ "targetCurrency": "USD",
2092
+ "exchangeRate": "1.000000",
2093
+ "fees": "0.75",
2094
+ "recipientFees": "0.75",
2095
+ "merchantFees": "0.00",
2096
+ "coverFees": false,
2097
+ "payoutMethod": "venmo",
2098
+ "memo": "Lower thirds",
2099
+ "externalId": null,
2100
+ "category": null,
2101
+ "tags": [],
2102
+ "failureMessage": null,
2103
+ "initiatedAt": "2026-08-14T15:05:00.000Z",
2104
+ "processedAt": "2026-08-14T15:05:00.000Z",
2105
+ "createdAt": "2026-08-13T10:00:00.000Z",
2106
+ "updatedAt": "2026-08-14T15:05:00.000Z"
2107
+ }
2108
+ },
2109
+ {
2110
+ "action": "upsert",
2111
+ "packageId": "trolley",
2112
+ "namespace": "payments",
2113
+ "rowId": "B-000000000000000000003N:P-0000000000000000000056",
2114
+ "value": {
2115
+ "id": "P-0000000000000000000056",
2116
+ "batchId": "B-000000000000000000003N",
2117
+ "recipientId": "R-0000000000000000000004",
2118
+ "accountId": "A-000000000000000000001i",
2119
+ "status": "processed",
2120
+ "amountSide": "source",
2121
+ "sourceAmount": "250.00",
2122
+ "sourceCurrency": "USD",
2123
+ "targetAmount": "194.47",
2124
+ "targetCurrency": "GBP",
2125
+ "exchangeRate": "0.781000",
2126
+ "fees": "1.00",
2127
+ "recipientFees": "1.00",
2128
+ "merchantFees": "0.00",
2129
+ "coverFees": false,
2130
+ "payoutMethod": "bank-transfer",
2131
+ "memo": "Interview edit",
2132
+ "externalId": null,
2133
+ "category": null,
2134
+ "tags": [],
2135
+ "failureMessage": null,
2136
+ "initiatedAt": "2026-08-21T15:10:00.000Z",
2137
+ "processedAt": "2026-08-21T15:10:00.000Z",
2138
+ "createdAt": "2026-08-20T10:00:00.000Z",
2139
+ "updatedAt": "2026-08-21T15:10:00.000Z"
2140
+ }
2141
+ },
2142
+ {
2143
+ "action": "upsert",
2144
+ "packageId": "trolley",
2145
+ "namespace": "payments",
2146
+ "rowId": "B-000000000000000000003N:P-0000000000000000000057",
2147
+ "value": {
2148
+ "id": "P-0000000000000000000057",
2149
+ "batchId": "B-000000000000000000003N",
2150
+ "recipientId": "R-0000000000000000000005",
2151
+ "accountId": "A-000000000000000000001j",
2152
+ "status": "processed",
2153
+ "amountSide": "source",
2154
+ "sourceAmount": "300.00",
2155
+ "sourceCurrency": "USD",
2156
+ "targetAmount": "272.69",
2157
+ "targetCurrency": "EUR",
2158
+ "exchangeRate": "0.912000",
2159
+ "fees": "1.00",
2160
+ "recipientFees": "1.00",
2161
+ "merchantFees": "0.00",
2162
+ "coverFees": false,
2163
+ "payoutMethod": "bank-transfer",
2164
+ "memo": "Color consult",
2165
+ "externalId": null,
2166
+ "category": null,
2167
+ "tags": [],
2168
+ "failureMessage": null,
2169
+ "initiatedAt": "2026-08-21T15:10:00.000Z",
2170
+ "processedAt": "2026-08-21T15:10:00.000Z",
2171
+ "createdAt": "2026-08-20T10:00:00.000Z",
2172
+ "updatedAt": "2026-08-21T15:10:00.000Z"
2173
+ }
2174
+ },
2175
+ {
2176
+ "action": "upsert",
2177
+ "packageId": "trolley",
2178
+ "namespace": "payments",
2179
+ "rowId": "B-000000000000000000003N:P-0000000000000000000058",
2180
+ "value": {
2181
+ "id": "P-0000000000000000000058",
2182
+ "batchId": "B-000000000000000000003N",
2183
+ "recipientId": "R-0000000000000000000007",
2184
+ "accountId": "A-000000000000000000001l",
2185
+ "status": "processed",
2186
+ "amountSide": "source",
2187
+ "sourceAmount": "60.00",
2188
+ "sourceCurrency": "USD",
2189
+ "targetAmount": "59.25",
2190
+ "targetCurrency": "USD",
2191
+ "exchangeRate": "1.000000",
2192
+ "fees": "0.75",
2193
+ "recipientFees": "0.75",
2194
+ "merchantFees": "0.00",
2195
+ "coverFees": false,
2196
+ "payoutMethod": "venmo",
2197
+ "memo": "GIF loops",
2198
+ "externalId": null,
2199
+ "category": null,
2200
+ "tags": [],
2201
+ "failureMessage": null,
2202
+ "initiatedAt": "2026-08-21T15:10:00.000Z",
2203
+ "processedAt": "2026-08-21T15:10:00.000Z",
2204
+ "createdAt": "2026-08-20T10:00:00.000Z",
2205
+ "updatedAt": "2026-08-21T15:10:00.000Z"
2206
+ }
2207
+ },
2208
+ {
2209
+ "action": "upsert",
2210
+ "packageId": "trolley",
2211
+ "namespace": "payments",
2212
+ "rowId": "B-000000000000000000003O:P-0000000000000000000059",
2213
+ "value": {
2214
+ "id": "P-0000000000000000000059",
2215
+ "batchId": "B-000000000000000000003O",
2216
+ "recipientId": "R-0000000000000000000002",
2217
+ "accountId": "A-000000000000000000001e",
2218
+ "status": "processed",
2219
+ "amountSide": "source",
2220
+ "sourceAmount": "1500.00",
2221
+ "sourceCurrency": "USD",
2222
+ "targetAmount": "1497.50",
2223
+ "targetCurrency": "USD",
2224
+ "exchangeRate": "1.000000",
2225
+ "fees": "2.50",
2226
+ "recipientFees": "2.50",
2227
+ "merchantFees": "0.00",
2228
+ "coverFees": false,
2229
+ "payoutMethod": "check",
2230
+ "memo": "August retainer",
2231
+ "externalId": null,
2232
+ "category": null,
2233
+ "tags": [],
2234
+ "failureMessage": null,
2235
+ "initiatedAt": "2026-08-28T14:45:00.000Z",
2236
+ "processedAt": "2026-08-28T14:45:00.000Z",
2237
+ "createdAt": "2026-08-27T09:00:00.000Z",
2238
+ "updatedAt": "2026-08-28T14:45:00.000Z"
2239
+ }
2240
+ },
2241
+ {
2242
+ "action": "upsert",
2243
+ "packageId": "trolley",
2244
+ "namespace": "payments",
2245
+ "rowId": "B-000000000000000000003O:P-000000000000000000005A",
2246
+ "value": {
2247
+ "id": "P-000000000000000000005A",
2248
+ "batchId": "B-000000000000000000003O",
2249
+ "recipientId": "R-0000000000000000000008",
2250
+ "accountId": "A-000000000000000000001m",
2251
+ "status": "processed",
2252
+ "amountSide": "source",
2253
+ "sourceAmount": "900.00",
2254
+ "sourceCurrency": "USD",
2255
+ "targetAmount": "15498.76",
2256
+ "targetCurrency": "MXN",
2257
+ "exchangeRate": "17.240000",
2258
+ "fees": "1.00",
2259
+ "recipientFees": "1.00",
2260
+ "merchantFees": "0.00",
2261
+ "coverFees": false,
2262
+ "payoutMethod": "bank-transfer",
2263
+ "memo": "Animation retainer",
2264
+ "externalId": null,
2265
+ "category": "services",
2266
+ "tags": [],
2267
+ "failureMessage": null,
2268
+ "initiatedAt": "2026-08-28T14:45:00.000Z",
2269
+ "processedAt": "2026-08-28T14:45:00.000Z",
2270
+ "createdAt": "2026-08-27T09:00:00.000Z",
2271
+ "updatedAt": "2026-08-28T14:45:00.000Z"
2272
+ }
2273
+ },
2274
+ {
2275
+ "action": "upsert",
2276
+ "packageId": "trolley",
2277
+ "namespace": "payments",
2278
+ "rowId": "B-000000000000000000003O:P-000000000000000000005B",
2279
+ "value": {
2280
+ "id": "P-000000000000000000005B",
2281
+ "batchId": "B-000000000000000000003O",
2282
+ "recipientId": "R-0000000000000000000001",
2283
+ "accountId": "A-000000000000000000001d",
2284
+ "status": "processed",
2285
+ "amountSide": "source",
2286
+ "sourceAmount": "75.00",
2287
+ "sourceCurrency": "USD",
2288
+ "targetAmount": "74.00",
2289
+ "targetCurrency": "USD",
2290
+ "exchangeRate": "1.000000",
2291
+ "fees": "1.00",
2292
+ "recipientFees": "1.00",
2293
+ "merchantFees": "0.00",
2294
+ "coverFees": false,
2295
+ "payoutMethod": "bank-transfer",
2296
+ "memo": "Icon set",
2297
+ "externalId": null,
2298
+ "category": null,
2299
+ "tags": [],
2300
+ "failureMessage": null,
2301
+ "initiatedAt": "2026-08-28T14:45:00.000Z",
2302
+ "processedAt": "2026-08-28T14:45:00.000Z",
2303
+ "createdAt": "2026-08-27T09:00:00.000Z",
2304
+ "updatedAt": "2026-08-28T14:45:00.000Z"
2305
+ }
2306
+ },
2307
+ {
2308
+ "action": "upsert",
2309
+ "packageId": "trolley",
2310
+ "namespace": "payments",
2311
+ "rowId": "B-000000000000000000003P:P-000000000000000000005C",
2312
+ "value": {
2313
+ "id": "P-000000000000000000005C",
2314
+ "batchId": "B-000000000000000000003P",
2315
+ "recipientId": "R-0000000000000000000003",
2316
+ "accountId": "A-000000000000000000001h",
2317
+ "status": "failed",
2318
+ "amountSide": "source",
2319
+ "sourceAmount": "120.00",
2320
+ "sourceCurrency": "USD",
2321
+ "targetAmount": "160.89",
2322
+ "targetCurrency": "CAD",
2323
+ "exchangeRate": "1.352000",
2324
+ "fees": "1.00",
2325
+ "recipientFees": "1.00",
2326
+ "merchantFees": "0.00",
2327
+ "coverFees": false,
2328
+ "payoutMethod": "bank-transfer",
2329
+ "memo": "Subtitle fixes",
2330
+ "externalId": null,
2331
+ "category": null,
2332
+ "tags": [],
2333
+ "failureMessage": "Recipient has no primary payout method",
2334
+ "initiatedAt": "2026-08-29T11:00:00.000Z",
2335
+ "processedAt": null,
2336
+ "createdAt": "2026-08-29T10:30:00.000Z",
2337
+ "updatedAt": "2026-08-29T11:00:00.000Z"
2338
+ }
2339
+ },
2340
+ {
2341
+ "action": "upsert",
2342
+ "packageId": "trolley",
2343
+ "namespace": "payment_index",
2344
+ "rowId": "P-000000000000000000004r",
2345
+ "value": {
2346
+ "batchId": "B-000000000000000000003F"
2347
+ }
2348
+ },
2349
+ {
2350
+ "action": "upsert",
2351
+ "packageId": "trolley",
2352
+ "namespace": "payment_index",
2353
+ "rowId": "P-000000000000000000004s",
2354
+ "value": {
2355
+ "batchId": "B-000000000000000000003F"
2356
+ }
2357
+ },
2358
+ {
2359
+ "action": "upsert",
2360
+ "packageId": "trolley",
2361
+ "namespace": "payment_index",
2362
+ "rowId": "P-000000000000000000004t",
2363
+ "value": {
2364
+ "batchId": "B-000000000000000000003F"
2365
+ }
2366
+ },
2367
+ {
2368
+ "action": "upsert",
2369
+ "packageId": "trolley",
2370
+ "namespace": "payment_index",
2371
+ "rowId": "P-000000000000000000004u",
2372
+ "value": {
2373
+ "batchId": "B-000000000000000000003G"
2374
+ }
2375
+ },
2376
+ {
2377
+ "action": "upsert",
2378
+ "packageId": "trolley",
2379
+ "namespace": "payment_index",
2380
+ "rowId": "P-000000000000000000004v",
2381
+ "value": {
2382
+ "batchId": "B-000000000000000000003G"
2383
+ }
2384
+ },
2385
+ {
2386
+ "action": "upsert",
2387
+ "packageId": "trolley",
2388
+ "namespace": "payment_index",
2389
+ "rowId": "P-000000000000000000004w",
2390
+ "value": {
2391
+ "batchId": "B-000000000000000000003H"
2392
+ }
2393
+ },
2394
+ {
2395
+ "action": "upsert",
2396
+ "packageId": "trolley",
2397
+ "namespace": "payment_index",
2398
+ "rowId": "P-000000000000000000004x",
2399
+ "value": {
2400
+ "batchId": "B-000000000000000000003H"
2401
+ }
2402
+ },
2403
+ {
2404
+ "action": "upsert",
2405
+ "packageId": "trolley",
2406
+ "namespace": "payment_index",
2407
+ "rowId": "P-000000000000000000004y",
2408
+ "value": {
2409
+ "batchId": "B-000000000000000000003I"
2410
+ }
2411
+ },
2412
+ {
2413
+ "action": "upsert",
2414
+ "packageId": "trolley",
2415
+ "namespace": "payment_index",
2416
+ "rowId": "P-000000000000000000004z",
2417
+ "value": {
2418
+ "batchId": "B-000000000000000000003I"
2419
+ }
2420
+ },
2421
+ {
2422
+ "action": "upsert",
2423
+ "packageId": "trolley",
2424
+ "namespace": "payment_index",
2425
+ "rowId": "P-0000000000000000000050",
2426
+ "value": {
2427
+ "batchId": "B-000000000000000000003J"
2428
+ }
2429
+ },
2430
+ {
2431
+ "action": "upsert",
2432
+ "packageId": "trolley",
2433
+ "namespace": "payment_index",
2434
+ "rowId": "P-0000000000000000000051",
2435
+ "value": {
2436
+ "batchId": "B-000000000000000000003L"
2437
+ }
2438
+ },
2439
+ {
2440
+ "action": "upsert",
2441
+ "packageId": "trolley",
2442
+ "namespace": "payment_index",
2443
+ "rowId": "P-0000000000000000000052",
2444
+ "value": {
2445
+ "batchId": "B-000000000000000000003L"
2446
+ }
2447
+ },
2448
+ {
2449
+ "action": "upsert",
2450
+ "packageId": "trolley",
2451
+ "namespace": "payment_index",
2452
+ "rowId": "P-0000000000000000000053",
2453
+ "value": {
2454
+ "batchId": "B-000000000000000000003L"
2455
+ }
2456
+ },
2457
+ {
2458
+ "action": "upsert",
2459
+ "packageId": "trolley",
2460
+ "namespace": "payment_index",
2461
+ "rowId": "P-0000000000000000000054",
2462
+ "value": {
2463
+ "batchId": "B-000000000000000000003M"
2464
+ }
2465
+ },
2466
+ {
2467
+ "action": "upsert",
2468
+ "packageId": "trolley",
2469
+ "namespace": "payment_index",
2470
+ "rowId": "P-0000000000000000000055",
2471
+ "value": {
2472
+ "batchId": "B-000000000000000000003M"
2473
+ }
2474
+ },
2475
+ {
2476
+ "action": "upsert",
2477
+ "packageId": "trolley",
2478
+ "namespace": "payment_index",
2479
+ "rowId": "P-0000000000000000000056",
2480
+ "value": {
2481
+ "batchId": "B-000000000000000000003N"
2482
+ }
2483
+ },
2484
+ {
2485
+ "action": "upsert",
2486
+ "packageId": "trolley",
2487
+ "namespace": "payment_index",
2488
+ "rowId": "P-0000000000000000000057",
2489
+ "value": {
2490
+ "batchId": "B-000000000000000000003N"
2491
+ }
2492
+ },
2493
+ {
2494
+ "action": "upsert",
2495
+ "packageId": "trolley",
2496
+ "namespace": "payment_index",
2497
+ "rowId": "P-0000000000000000000058",
2498
+ "value": {
2499
+ "batchId": "B-000000000000000000003N"
2500
+ }
2501
+ },
2502
+ {
2503
+ "action": "upsert",
2504
+ "packageId": "trolley",
2505
+ "namespace": "payment_index",
2506
+ "rowId": "P-0000000000000000000059",
2507
+ "value": {
2508
+ "batchId": "B-000000000000000000003O"
2509
+ }
2510
+ },
2511
+ {
2512
+ "action": "upsert",
2513
+ "packageId": "trolley",
2514
+ "namespace": "payment_index",
2515
+ "rowId": "P-000000000000000000005A",
2516
+ "value": {
2517
+ "batchId": "B-000000000000000000003O"
2518
+ }
2519
+ },
2520
+ {
2521
+ "action": "upsert",
2522
+ "packageId": "trolley",
2523
+ "namespace": "payment_index",
2524
+ "rowId": "P-000000000000000000005B",
2525
+ "value": {
2526
+ "batchId": "B-000000000000000000003O"
2527
+ }
2528
+ },
2529
+ {
2530
+ "action": "upsert",
2531
+ "packageId": "trolley",
2532
+ "namespace": "payment_index",
2533
+ "rowId": "P-000000000000000000005C",
2534
+ "value": {
2535
+ "batchId": "B-000000000000000000003P"
2536
+ }
2537
+ }
2538
+ ]
2539
+ }