Schemas

SalePromotionsRequest

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "execution_mode": "VALIDATION",
  "validation_id": "123e4567-e89b-12d3-a456-426614174000",
  "requested_promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ]
}
Name Type Required Description
execution_mode ExecutionMode true Defines whether the operation is simulated or actually performed
validation_id string(uuid) false Identifier of the previously performed sale validation. Required only when execution mode is set to EXECUTION. This identifier expires after a limited time window, after which the sale must be validated again.
requested_promotions [PromotionRequest] true List of promotions to be applied

SalePromotionsResponse

 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
{
  "validation_id": "123e4567-e89b-12d3-a456-426614174000",
  "has_incompatibilities": true,
  "subscriptions": [
    {
      "subscription_id": "123e4567-e89b-12d3-a456-426614174000",
      "incompatible_promotions": [
        {
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "catalogue_id": "123",
          "activation_date": "2022-12-01",
          "expiration_date": "2022-12-01",
          "deactivation_date": "2022-12-01"
        }
      ],
      "created_promotions": [
        {
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "catalogue_id": "123",
          "activation_date": "2022-12-01",
          "expiration_date": "2022-12-01",
          "deactivation_date": "2022-12-01"
        }
      ]
    }
  ]
}
Name Type Required Description
validation_id string(uuid) true Identifier of the previously performed sale validation. Required only when execution mode is set to EXECUTION. This identifier expires after a limited time window, after which the sale must be validated again.
has_incompatibilities boolean true Indicates if there are any incompatibilities with the requested promotions
subscriptions SaleSubscriptionPromotionResponseSet true List of subscriptions affected by the sale

SaleSubscriptionPromotionResponseSet

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[
  {
    "subscription_id": "123e4567-e89b-12d3-a456-426614174000",
    "incompatible_promotions": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "catalogue_id": "123",
        "activation_date": "2022-12-01",
        "expiration_date": "2022-12-01",
        "deactivation_date": "2022-12-01"
      }
    ],
    "created_promotions": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "catalogue_id": "123",
        "activation_date": "2022-12-01",
        "expiration_date": "2022-12-01",
        "deactivation_date": "2022-12-01"
      }
    ]
  }
]
Name Type Required Description
anonymous [SaleSubscriptionPromotionResponse] false none

SaleSubscriptionPromotionResponse

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "subscription_id": "123e4567-e89b-12d3-a456-426614174000",
  "incompatible_promotions": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "catalogue_id": "123",
      "activation_date": "2022-12-01",
      "expiration_date": "2022-12-01",
      "deactivation_date": "2022-12-01"
    }
  ],
  "created_promotions": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "catalogue_id": "123",
      "activation_date": "2022-12-01",
      "expiration_date": "2022-12-01",
      "deactivation_date": "2022-12-01"
    }
  ]
}
Name Type Required Description
subscription_id string(uuid) true Subscription unique identifier
incompatible_promotions PromotionsResponseSet true List of promotions the subscription currently has that are incompatible with the sale. When ExecutionMode is set to Execution, these promotions will be automatically cancelled or deactivated as part of the sale process
created_promotions PromotionsResponseSet true List of new created promotions

SalePromotionsResponseSet

 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
[
  {
    "validation_id": "123e4567-e89b-12d3-a456-426614174000",
    "has_incompatibilities": true,
    "subscriptions": [
      {
        "subscription_id": "123e4567-e89b-12d3-a456-426614174000",
        "incompatible_promotions": [
          {
            "id": "123e4567-e89b-12d3-a456-426614174000",
            "catalogue_id": "123",
            "activation_date": "2022-12-01",
            "expiration_date": "2022-12-01",
            "deactivation_date": "2022-12-01"
          }
        ],
        "created_promotions": [
          {
            "id": "123e4567-e89b-12d3-a456-426614174000",
            "catalogue_id": "123",
            "activation_date": "2022-12-01",
            "expiration_date": "2022-12-01",
            "deactivation_date": "2022-12-01"
          }
        ]
      }
    ]
  }
]
Name Type Required Description
anonymous [SalePromotionsResponse] false none

TerminateSubscriptionPromotionRequest

1
2
3
4
{
  "termination_date": "2022-12-01",
  "reason": "SUBSCRIPTION_DEACTIVATION"
}
Name Type Required Description
termination_date string(date) false Date and time when the termination should take place. Format according to ISO 8601
reason PromotionTerminationReasons true Reason for the termination

TerminatePromotionInAllBundleSubscriptionsRequest

1
2
3
4
5
{
  "termination_date": "2022-12-01",
  "reason": "SUBSCRIPTION_DEACTIVATION",
  "catalogue_promotion_id": "123"
}
Name Type Required Description
termination_date string(date) false Date and time when the termination should take place. Format according to ISO 8601
reason PromotionTerminationReasons true Reason for the termination
catalogue_promotion_id string true Catalogue promotion ID to be terminated in all applicable subscriptions within the bundle

PromotionTerminationReasons

1
"SUBSCRIPTION_DEACTIVATION"
Name Type Required Description
anonymous string false Reason for the termination
Property Values
anonymous one of [AUTOMATICALLY_REMOVED, MANUALLY_REMOVED, OTHER, PROMOTION_INCOMPATIBILITY, SUBSCRIPTION_DEACTIVATION]

ExecutionMode

1
"EXECUTION"
Name Type Required Description
anonymous string false none
Property Values
anonymous one of [EXECUTION, VALIDATION]

CatalogueSaleType

1
"NEW_SALE"
Name Type Required Description
anonymous string false Type of commercial process used to validate against catalogue. These values are standardized in this API and will be mapped to the specific catalogue values.
Property Values
anonymous one of [NEW_SALE, CROSS_SELL, MIGRATION, ADD_SUBSCRIPTION]

CommercialTransactionType

1
"BUNDLE_SALE"
Name Type Required Description
anonymous string false Type of commercial transaction
Property Values
anonymous one of [BUNDLE_SALE, BUNDLE_MIGRATION, BUNDLE_MODIFICATION, ADDRESS_CHANGE, TECHNOLOGY_CHANGE]

ContractDeliveryChannel

1
"EMAIL"
Name Type Required Description
anonymous string false Delivery channel used to send the contract. Default value is UNKNOWN
Property Values
anonymous one of [APPLICATION, PAPER, EMAIL, UNKNOWN]

BundleSaleRequest

  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
{
  "type": "NEW_SALE",
  "catalogue_bundled_product_id": 8432,
  "customers_account_id": "ce2f20cb-35df-4ffe-bca6-c0ed0c28cb39",
  "dealers_dealer_id": "1234",
  "risk_evaluation_data": {
    "pre_scoring_id": 18395,
    "score_value": 71,
    "upfront": 0
  },
  "financial_evaluation_data": {
    "credit_limit": 1000,
    "credit_limit_available": 1000
  },
  "signature_process_id": 18395,
  "legacy_sell_id": 242940268,
  "payment_data": {
    "total_amount": 149,
    "tax_amount": 10,
    "first_invoice_payment": 5,
    "point_of_sale_payment": 33,
    "platform": "ADYEN",
    "transaction_id": "PLC6640C65E45847BC",
    "link": "https://test.adyen.link/PLC6640C65E45847BC",
    "external_reference": "2311BDXI1880"
  },
  "subscriptions": {
    "mobile": [
      {
        "msisdn": 34611223344,
        "mobile_portability_info": {
          "donor_operator_id": 31,
          "donor_data": {
            "name": "string",
            "surname": "string",
            "second_surname": "string",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            }
          },
          "portability_process_initial_date": "2017-09-15T22:00:00Z",
          "internal_portability": true,
          "donor_iccid": "8934000000000000002",
          "donor_billing_type": "PREPAY",
          "one_time_password_id": "ee0881ff-6050-43bd-a4b3-b7e8fd0474d9"
        },
        "sim": {
          "type": "ESIM",
          "iccid": "12341234123412341234123412341234"
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "broadband": [
      {
        "access_id": "IUA-XXX",
        "vacant_loop": true,
        "territory_owner": "FIBMM01",
        "access_reuse_info_allowed": true,
        "legacy_service_id": "MYSIM_2331123",
        "installation_address": {
          "street_type": "Calle",
          "street_name": "Tellez",
          "house_number": "12",
          "additional_info": "Esc. Dcha 3 C",
          "city": "Riaza",
          "province": "Segovia",
          "country": "es",
          "post_code": "40500",
          "address_code": "28000010758100012    OA   004C       ",
          "address_additional_id": "123443554"
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "landline": [
      {
        "fixed_phone_number": "913312244",
        "installation_address": {
          "street_type": "Calle",
          "street_name": "Tellez",
          "house_number": "12",
          "additional_info": "Esc. Dcha 3 C",
          "city": "Riaza",
          "province": "Segovia",
          "country": "es",
          "post_code": "40500",
          "address_code": "28000010758100012    OA   004C       ",
          "address_additional_id": "123443554"
        },
        "contact_info": {
          "name": "Diego",
          "surname": "Landolfi Espi",
          "identity_document": {
            "id_type": "NIF",
            "id": "5012341234"
          },
          "phone_number": "696288378",
          "email_address": "diego@hotmail.com"
        },
        "fixed_portability_info": {
          "donor_operator_id": 31,
          "scheduled_portability_date": "2017-09-15T22:00:00Z",
          "internal_portability": true,
          "installation_required": false,
          "donor_data": {
            "name": "string",
            "surname": "string",
            "second_surname": "string",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            }
          }
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "amazon_prime": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "agile_tv": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "netflix": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "max": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "orange_tv": [
      {
        "registration_email": "john.doe@mail.com",
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "disney": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ]
  },
  "contract_delivery_channel": "EMAIL",
  "legacy_origin_app_id": 4
}
Name Type Required Description
type CatalogueSaleType true Type of commercial process used to validate against catalogue. These values are standardized in this API and will be mapped to the specific catalogue values.
catalogue_bundled_product_id string true Bundled product id according to catalogue definition
customers_account_id string(uuid) true Unique identifier of the account. Required if is Orange TV Libre sale
dealers_dealer_id string true Unique identifier of the dealer
risk_evaluation_data RiskEvaluationData true none
financial_evaluation_data FinancialEvaluationData false none
signature_process_id string false ID of the resource containing subscriber valid signature to purchase subscription
legacy_sell_id string false Legacy field to relate bundle to external sale operation
payment_data PaymentData false none
subscriptions BundleSubscriptions true Set of subscriptions to include on bundle grouped by type
contract_delivery_channel ContractDeliveryChannel false Delivery channel used to send the contract. Default value is UNKNOWN
legacy_origin_app_id integer false Application ID according to MySim. Required if not Orange TV Libre sale

BundleModificationRequest

  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
{
  "dealers_dealer_id": "1234",
  "risk_evaluation_data": {
    "pre_scoring_id": 18395,
    "score_value": 71,
    "upfront": 0
  },
  "financial_evaluation_data": {
    "credit_limit": 1000,
    "credit_limit_available": 1000
  },
  "signature_process_id": 18395,
  "legacy_sell_id": 242940268,
  "payment_data": {
    "total_amount": 149,
    "tax_amount": 10,
    "first_invoice_payment": 5,
    "point_of_sale_payment": 33,
    "platform": "ADYEN",
    "transaction_id": "PLC6640C65E45847BC",
    "link": "https://test.adyen.link/PLC6640C65E45847BC",
    "external_reference": "2311BDXI1880"
  },
  "add_subscriptions": {
    "mobile": [
      {
        "msisdn": 34611223344,
        "mobile_portability_info": {
          "donor_operator_id": 31,
          "donor_data": {
            "name": "string",
            "surname": "string",
            "second_surname": "string",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            }
          },
          "portability_process_initial_date": "2017-09-15T22:00:00Z",
          "internal_portability": true,
          "donor_iccid": "8934000000000000002",
          "donor_billing_type": "PREPAY",
          "one_time_password_id": "ee0881ff-6050-43bd-a4b3-b7e8fd0474d9"
        },
        "sim": {
          "type": "ESIM",
          "iccid": "12341234123412341234123412341234"
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "broadband": [
      {
        "access_id": "IUA-XXX",
        "vacant_loop": true,
        "territory_owner": "FIBMM01",
        "access_reuse_info_allowed": true,
        "legacy_service_id": "MYSIM_2331123",
        "installation_address": {
          "street_type": "Calle",
          "street_name": "Tellez",
          "house_number": "12",
          "additional_info": "Esc. Dcha 3 C",
          "city": "Riaza",
          "province": "Segovia",
          "country": "es",
          "post_code": "40500",
          "address_code": "28000010758100012    OA   004C       ",
          "address_additional_id": "123443554"
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "landline": [
      {
        "fixed_phone_number": "913312244",
        "installation_address": {
          "street_type": "Calle",
          "street_name": "Tellez",
          "house_number": "12",
          "additional_info": "Esc. Dcha 3 C",
          "city": "Riaza",
          "province": "Segovia",
          "country": "es",
          "post_code": "40500",
          "address_code": "28000010758100012    OA   004C       ",
          "address_additional_id": "123443554"
        },
        "contact_info": {
          "name": "Diego",
          "surname": "Landolfi Espi",
          "identity_document": {
            "id_type": "NIF",
            "id": "5012341234"
          },
          "phone_number": "696288378",
          "email_address": "diego@hotmail.com"
        },
        "fixed_portability_info": {
          "donor_operator_id": 31,
          "scheduled_portability_date": "2017-09-15T22:00:00Z",
          "internal_portability": true,
          "installation_required": false,
          "donor_data": {
            "name": "string",
            "surname": "string",
            "second_surname": "string",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            }
          }
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "amazon_prime": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "agile_tv": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "netflix": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "max": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "orange_tv": [
      {
        "registration_email": "john.doe@mail.com",
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "disney": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ]
  },
  "remove_subscriptions": [
    "497f6eca-6276-4993-bfeb-53cbbbba6f08"
  ],
  "contract_delivery_channel": "EMAIL",
  "legacy_origin_app_id": 4
}
Name Type Required Description
dealers_dealer_id string true Unique identifier of the dealer
risk_evaluation_data RiskEvaluationData true none
financial_evaluation_data FinancialEvaluationData false none
signature_process_id string false ID of the resource containing subscriber valid signature to purchase subscription
legacy_sell_id string false Legacy field to relate bundle to external sale operation
payment_data PaymentData false none
add_subscriptions BundleSubscriptions false List of subscriptions to add to the bundle. Currently only OTT subscriptions can be added using this endpoint
remove_subscriptions [string] false List of subscription IDs to remove from the bundle. Currently only OTT subscriptions can be removed using this endpoint
contract_delivery_channel ContractDeliveryChannel false Delivery channel used to send the contract. Default value is UNKNOWN
legacy_origin_app_id integer false Application ID according to MySim. Required if not Orange TV Libre sale

BundleMigrationRequest

  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
{
  "catalogue_bundled_product_id": 8432,
  "dealers_dealer_id": "1234",
  "risk_evaluation_data": {
    "pre_scoring_id": 18395,
    "score_value": 71,
    "upfront": 0
  },
  "financial_evaluation_data": {
    "credit_limit": 1000,
    "credit_limit_available": 1000
  },
  "signature_process_id": 18395,
  "legacy_sell_id": 242940268,
  "payment_data": {
    "total_amount": 149,
    "tax_amount": 10,
    "first_invoice_payment": 5,
    "point_of_sale_payment": 33,
    "platform": "ADYEN",
    "transaction_id": "PLC6640C65E45847BC",
    "link": "https://test.adyen.link/PLC6640C65E45847BC",
    "external_reference": "2311BDXI1880"
  },
  "add_subscriptions": {
    "mobile": [
      {
        "msisdn": 34611223344,
        "mobile_portability_info": {
          "donor_operator_id": 31,
          "donor_data": {
            "name": "string",
            "surname": "string",
            "second_surname": "string",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            }
          },
          "portability_process_initial_date": "2017-09-15T22:00:00Z",
          "internal_portability": true,
          "donor_iccid": "8934000000000000002",
          "donor_billing_type": "PREPAY",
          "one_time_password_id": "ee0881ff-6050-43bd-a4b3-b7e8fd0474d9"
        },
        "sim": {
          "type": "ESIM",
          "iccid": "12341234123412341234123412341234"
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "broadband": [
      {
        "access_id": "IUA-XXX",
        "vacant_loop": true,
        "territory_owner": "FIBMM01",
        "access_reuse_info_allowed": true,
        "legacy_service_id": "MYSIM_2331123",
        "installation_address": {
          "street_type": "Calle",
          "street_name": "Tellez",
          "house_number": "12",
          "additional_info": "Esc. Dcha 3 C",
          "city": "Riaza",
          "province": "Segovia",
          "country": "es",
          "post_code": "40500",
          "address_code": "28000010758100012    OA   004C       ",
          "address_additional_id": "123443554"
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "landline": [
      {
        "fixed_phone_number": "913312244",
        "installation_address": {
          "street_type": "Calle",
          "street_name": "Tellez",
          "house_number": "12",
          "additional_info": "Esc. Dcha 3 C",
          "city": "Riaza",
          "province": "Segovia",
          "country": "es",
          "post_code": "40500",
          "address_code": "28000010758100012    OA   004C       ",
          "address_additional_id": "123443554"
        },
        "contact_info": {
          "name": "Diego",
          "surname": "Landolfi Espi",
          "identity_document": {
            "id_type": "NIF",
            "id": "5012341234"
          },
          "phone_number": "696288378",
          "email_address": "diego@hotmail.com"
        },
        "fixed_portability_info": {
          "donor_operator_id": 31,
          "scheduled_portability_date": "2017-09-15T22:00:00Z",
          "internal_portability": true,
          "installation_required": false,
          "donor_data": {
            "name": "string",
            "surname": "string",
            "second_surname": "string",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            }
          }
        },
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "amazon_prime": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "agile_tv": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "netflix": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "max": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "orange_tv": [
      {
        "registration_email": "john.doe@mail.com",
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ],
    "disney": [
      {
        "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
        "mandatory": true,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ],
        "add_ons": [
          {
            "catalogue_value_added_service_legacy_id": "124",
            "catalogue_value_added_service_id": "124",
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "free_units_packages": [
          {
            "catalogue_free_units_packages_id": "124"
          }
        ],
        "devices_related_info": {
          "devices": [
            {
              "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
              "reservation_id": "1567",
              "signature_process_id": "18395",
              "serial_number": "9876543-AB-345",
              "mac_address": "00-B0-D0-63-C2-26",
              "imei": "AA-BBBBBB-CCCCCC-D",
              "commitments": [
                {
                  "catalogue_term_id": "123"
                }
              ],
              "insurable_amount": 135.49,
              "promotions": [
                {
                  "catalogue_promotion_id": "123",
                  "activation_date": "2022-12-01"
                }
              ]
            }
          ],
          "pre_booking": {
            "order_id": "123213asdsa",
            "authorization_id": "",
            "financial_entity": "BBVA",
            "agreed_commercial_consents": true,
            "agreed_gdpr": true,
            "status": "ACCEPTED",
            "granted_amount": 100,
            "credit_line_amount": 10
          },
          "delivery_info": {
            "contact_info": {
              "name": "Diego",
              "surname": "Landolfi Espi",
              "identity_document": {
                "id_type": "NIF",
                "id": "5012341234"
              },
              "phone_number": "696288378",
              "email_address": "diego@hotmail.com"
            },
            "address": {
              "street_type": "Calle",
              "street_name": "Tellez",
              "house_number": "12",
              "additional_info": "Esc. Dcha 3 C",
              "city": "Riaza",
              "province": "Segovia",
              "country": "es",
              "post_code": "40500",
              "address_code": "28000010758100012    OA   004C       ",
              "address_additional_id": "123443554"
            },
            "delivery_type": "CUSTOMER_ADDRESS",
            "dealer_code": "1234"
          }
        }
      }
    ]
  },
  "remove_subscriptions": [
    "497f6eca-6276-4993-bfeb-53cbbbba6f08"
  ],
  "modify_subscriptions": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "contract_delivery_channel": "EMAIL",
  "legacy_origin_app_id": 4
}
Name Type Required Description
catalogue_bundled_product_id string false Bundled product ID of the new bundle according to catalogue definition
dealers_dealer_id string true Unique identifier of the dealer
risk_evaluation_data RiskEvaluationData true none
financial_evaluation_data FinancialEvaluationData false none
signature_process_id string false ID of the resource containing subscriber valid signature to purchase subscription
legacy_sell_id string false Legacy field to relate bundle to external sale operation
payment_data PaymentData false none
add_subscriptions BundleSubscriptions false List of subscriptions to add to the bundle. Currently only OTT subscriptions can be added using this endpoint
remove_subscriptions [string] false List of subscription IDs to remove from the bundle. Currently only OTT subscriptions can be removed using this endpoint
modify_subscriptions [allOf] false List of subscriptions to modify in the bundle
contract_delivery_channel ContractDeliveryChannel false Delivery channel used to send the contract. Default value is UNKNOWN
legacy_origin_app_id integer false Application ID according to MySim. Required if not Orange TV Libre sale

ModifySubscriptionRequest

 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
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
id string(uuid) false Subscription unique identifier
devices_related_info DevicesRelatedInfo false Info about devices associated to the subscription

FinancialEvaluationData

1
2
3
4
{
  "credit_limit": 1000,
  "credit_limit_available": 1000
}
Name Type Required Description
credit_limit number true Credit limit assigned to the subscriber
credit_limit_available number true Credit limit available for the subscriber

RiskEvaluationData

1
2
3
4
5
{
  "pre_scoring_id": 18395,
  "score_value": 71,
  "upfront": 0
}
Name Type Required Description
pre_scoring_id string true A subscriber scoring check is required before bundle creation and the scoring request id must be provided
in this field
score_value integer false Score value calculated by risk system
upfront number false Upfront calculated by risk system

PaymentData

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "total_amount": 149,
  "tax_amount": 10,
  "first_invoice_payment": 5,
  "point_of_sale_payment": 33,
  "platform": "ADYEN",
  "transaction_id": "PLC6640C65E45847BC",
  "link": "https://test.adyen.link/PLC6640C65E45847BC",
  "external_reference": "2311BDXI1880"
}
Name Type Required Description
total_amount number true Total amount of the payment
tax_amount number true Tax amount of the payment
first_invoice_payment number false First invoice advance payment amount
point_of_sale_payment number false Point of sale payment amount
platform string false Platform used for the payment
transaction_id string false Transaction ID of the payment
link string false Link to the payment platform
external_reference string false External reference of the payment

BundleSubscriptions

  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
{
  "mobile": [
    {
      "msisdn": 34611223344,
      "mobile_portability_info": {
        "donor_operator_id": 31,
        "donor_data": {
          "name": "string",
          "surname": "string",
          "second_surname": "string",
          "identity_document": {
            "id_type": "NIF",
            "id": "5012341234"
          }
        },
        "portability_process_initial_date": "2017-09-15T22:00:00Z",
        "internal_portability": true,
        "donor_iccid": "8934000000000000002",
        "donor_billing_type": "PREPAY",
        "one_time_password_id": "ee0881ff-6050-43bd-a4b3-b7e8fd0474d9"
      },
      "sim": {
        "type": "ESIM",
        "iccid": "12341234123412341234123412341234"
      },
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "broadband": [
    {
      "access_id": "IUA-XXX",
      "vacant_loop": true,
      "territory_owner": "FIBMM01",
      "access_reuse_info_allowed": true,
      "legacy_service_id": "MYSIM_2331123",
      "installation_address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "landline": [
    {
      "fixed_phone_number": "913312244",
      "installation_address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "fixed_portability_info": {
        "donor_operator_id": 31,
        "scheduled_portability_date": "2017-09-15T22:00:00Z",
        "internal_portability": true,
        "installation_required": false,
        "donor_data": {
          "name": "string",
          "surname": "string",
          "second_surname": "string",
          "identity_document": {
            "id_type": "NIF",
            "id": "5012341234"
          }
        }
      },
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "amazon_prime": [
    {
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "agile_tv": [
    {
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "netflix": [
    {
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "max": [
    {
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "orange_tv": [
    {
      "registration_email": "john.doe@mail.com",
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ],
  "disney": [
    {
      "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
      "mandatory": true,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ],
      "add_ons": [
        {
          "catalogue_value_added_service_legacy_id": "124",
          "catalogue_value_added_service_id": "124",
          "promotions": [
            {
              "catalogue_promotion_id": "123",
              "activation_date": "2022-12-01"
            }
          ]
        }
      ],
      "free_units_packages": [
        {
          "catalogue_free_units_packages_id": "124"
        }
      ],
      "devices_related_info": {
        "devices": [
          {
            "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
            "reservation_id": "1567",
            "signature_process_id": "18395",
            "serial_number": "9876543-AB-345",
            "mac_address": "00-B0-D0-63-C2-26",
            "imei": "AA-BBBBBB-CCCCCC-D",
            "commitments": [
              {
                "catalogue_term_id": "123"
              }
            ],
            "insurable_amount": 135.49,
            "promotions": [
              {
                "catalogue_promotion_id": "123",
                "activation_date": "2022-12-01"
              }
            ]
          }
        ],
        "pre_booking": {
          "order_id": "123213asdsa",
          "authorization_id": "",
          "financial_entity": "BBVA",
          "agreed_commercial_consents": true,
          "agreed_gdpr": true,
          "status": "ACCEPTED",
          "granted_amount": 100,
          "credit_line_amount": 10
        },
        "delivery_info": {
          "contact_info": {
            "name": "Diego",
            "surname": "Landolfi Espi",
            "identity_document": {
              "id_type": "NIF",
              "id": "5012341234"
            },
            "phone_number": "696288378",
            "email_address": "diego@hotmail.com"
          },
          "address": {
            "street_type": "Calle",
            "street_name": "Tellez",
            "house_number": "12",
            "additional_info": "Esc. Dcha 3 C",
            "city": "Riaza",
            "province": "Segovia",
            "country": "es",
            "post_code": "40500",
            "address_code": "28000010758100012    OA   004C       ",
            "address_additional_id": "123443554"
          },
          "delivery_type": "CUSTOMER_ADDRESS",
          "dealer_code": "1234"
        }
      }
    }
  ]
}
Name Type Required Description
mobile [Mobile] false Mobile subscriptions included in the bundle
broadband [Broadband] false Broadband subscriptions included in the bundle
landline [Landline] false Landline subscriptions included in the bundle
amazon_prime [AmazonPrime] false Amazon Prime subscriptions included in the bundle
agile_tv [AgileTv] false Agile Tv subscriptions included in the bundle
netflix [Netflix] false Netflix subscriptions included in the bundle
max [Max] false Max subscriptions included in the bundle
orange_tv [OrangeTv] false Orange Tv subscriptions included in the bundle
disney [Disney] false Disney subscriptions included in the bundle

Subscription

 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
{
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
catalogue_bundled_commercial_product_id string false Bundle commercial product id associated to subscription according to catalogue definition
mandatory boolean false Specifies if subscription is mandatory for the given bundle
promotions [PromotionRequest] false Ids of applicable promotions according to catalogue definition
add_ons [AddOn] false Ids of applicable add-ons(value added services) according to catalogue definition
free_units_packages [FreeUnitsPackage] false Ids of free units packages according to catalogue definition
devices_related_info DevicesRelatedInfo false Info about devices associated to the subscription

Mobile

  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
{
  "msisdn": 34611223344,
  "mobile_portability_info": {
    "donor_operator_id": 31,
    "donor_data": {
      "name": "string",
      "surname": "string",
      "second_surname": "string",
      "identity_document": {
        "id_type": "NIF",
        "id": "5012341234"
      }
    },
    "portability_process_initial_date": "2017-09-15T22:00:00Z",
    "internal_portability": true,
    "donor_iccid": "8934000000000000002",
    "donor_billing_type": "PREPAY",
    "one_time_password_id": "ee0881ff-6050-43bd-a4b3-b7e8fd0474d9"
  },
  "sim": {
    "type": "ESIM",
    "iccid": "12341234123412341234123412341234"
  },
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
msisdn string true MSISDN (Mobile Station International Subscriber Directory Number) formatted following E.164 format
mobile_portability_info MobilePortabilityInfo false Data required to perform mobile portability
sim Sim false none
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

Broadband

  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
{
  "access_id": "IUA-XXX",
  "vacant_loop": true,
  "territory_owner": "FIBMM01",
  "access_reuse_info_allowed": true,
  "legacy_service_id": "MYSIM_2331123",
  "installation_address": {
    "street_type": "Calle",
    "street_name": "Tellez",
    "house_number": "12",
    "additional_info": "Esc. Dcha 3 C",
    "city": "Riaza",
    "province": "Segovia",
    "country": "es",
    "post_code": "40500",
    "address_code": "28000010758100012    OA   004C       ",
    "address_additional_id": "123443554"
  },
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
access_id string false Id that identifies the specific access to the network used by the subscription
vacant_loop boolean false Indicates if there is a vacant loop for provision
territory_owner string true Territory owner of the network infrastructure
access_reuse_info_allowed boolean false Indicates if the client consents the access to installation info for access reuse
legacy_service_id string false Legacy service id that identifies the broadband service in OSS
installation_address Address false Indicates the address where the service is installed
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

Landline

  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
{
  "fixed_phone_number": "913312244",
  "installation_address": {
    "street_type": "Calle",
    "street_name": "Tellez",
    "house_number": "12",
    "additional_info": "Esc. Dcha 3 C",
    "city": "Riaza",
    "province": "Segovia",
    "country": "es",
    "post_code": "40500",
    "address_code": "28000010758100012    OA   004C       ",
    "address_additional_id": "123443554"
  },
  "contact_info": {
    "name": "Diego",
    "surname": "Landolfi Espi",
    "identity_document": {
      "id_type": "NIF",
      "id": "5012341234"
    },
    "phone_number": "696288378",
    "email_address": "diego@hotmail.com"
  },
  "fixed_portability_info": {
    "donor_operator_id": 31,
    "scheduled_portability_date": "2017-09-15T22:00:00Z",
    "internal_portability": true,
    "installation_required": false,
    "donor_data": {
      "name": "string",
      "surname": "string",
      "second_surname": "string",
      "identity_document": {
        "id_type": "NIF",
        "id": "5012341234"
      }
    }
  },
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
fixed_phone_number string true Landline fixed phone number
installation_address Address false Indicates the address where the service is installed
contact_info ContactInfo true Contact info of the person that must be contacted for installation process
fixed_portability_info FixedPortabilityInfo false none
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

AmazonPrime

 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
{
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

AgileTv

 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
{
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

Netflix

 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
{
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

Max

 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
{
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

OrangeTv

 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
{
  "registration_email": "john.doe@mail.com",
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
registration_email string true Email address linked to the Orange TV subscription
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

Disney

 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
{
  "catalogue_bundled_commercial_product_id": "8432_BUNDLED_3P",
  "mandatory": true,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ],
  "add_ons": [
    {
      "catalogue_value_added_service_legacy_id": "124",
      "catalogue_value_added_service_id": "124",
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "free_units_packages": [
    {
      "catalogue_free_units_packages_id": "124"
    }
  ],
  "devices_related_info": {
    "devices": [
      {
        "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
        "reservation_id": "1567",
        "signature_process_id": "18395",
        "serial_number": "9876543-AB-345",
        "mac_address": "00-B0-D0-63-C2-26",
        "imei": "AA-BBBBBB-CCCCCC-D",
        "commitments": [
          {
            "catalogue_term_id": "123"
          }
        ],
        "insurable_amount": 135.49,
        "promotions": [
          {
            "catalogue_promotion_id": "123",
            "activation_date": "2022-12-01"
          }
        ]
      }
    ],
    "pre_booking": {
      "order_id": "123213asdsa",
      "authorization_id": "",
      "financial_entity": "BBVA",
      "agreed_commercial_consents": true,
      "agreed_gdpr": true,
      "status": "ACCEPTED",
      "granted_amount": 100,
      "credit_line_amount": 10
    },
    "delivery_info": {
      "contact_info": {
        "name": "Diego",
        "surname": "Landolfi Espi",
        "identity_document": {
          "id_type": "NIF",
          "id": "5012341234"
        },
        "phone_number": "696288378",
        "email_address": "diego@hotmail.com"
      },
      "address": {
        "street_type": "Calle",
        "street_name": "Tellez",
        "house_number": "12",
        "additional_info": "Esc. Dcha 3 C",
        "city": "Riaza",
        "province": "Segovia",
        "country": "es",
        "post_code": "40500",
        "address_code": "28000010758100012    OA   004C       ",
        "address_additional_id": "123443554"
      },
      "delivery_type": "CUSTOMER_ADDRESS",
      "dealer_code": "1234"
    }
  }
}
Name Type Required Description
anonymous Subscription false none
Name Type Required Description
anonymous object false none

Sim

1
2
3
4
{
  "type": "ESIM",
  "iccid": "12341234123412341234123412341234"
}
Name Type Required Description
type string true SIM type
iccid string false ICCID(Integrated Circuit Card ID) that identifies the SIM and is visible for the customer

MobilePortabilityInfo

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{
  "donor_operator_id": 31,
  "donor_data": {
    "name": "string",
    "surname": "string",
    "second_surname": "string",
    "identity_document": {
      "id_type": "NIF",
      "id": "5012341234"
    }
  },
  "portability_process_initial_date": "2017-09-15T22:00:00Z",
  "internal_portability": true,
  "donor_iccid": "8934000000000000002",
  "donor_billing_type": "PREPAY",
  "one_time_password_id": "ee0881ff-6050-43bd-a4b3-b7e8fd0474d9"
}
Name Type Required Description
donor_operator_id string true Donor operator id according to applicable country authority
donor_data DonorData true Personal data of the owner before portability
portability_process_initial_date string(date-time) false Initial date of the portability process. Format according to ISO 8601
internal_portability boolean false Indicates if the portability is done between operators that share infrastructure
donor_iccid string true ICCID of the donor SIM card
donor_billing_type string false Billing type of the donor
one_time_password_id string false One time password process id used for line ownership check

FixedPortabilityInfo

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{
  "donor_operator_id": 31,
  "scheduled_portability_date": "2017-09-15T22:00:00Z",
  "internal_portability": true,
  "installation_required": false,
  "donor_data": {
    "name": "string",
    "surname": "string",
    "second_surname": "string",
    "identity_document": {
      "id_type": "NIF",
      "id": "5012341234"
    }
  }
}
Name Type Required Description
donor_operator_id string true Donor operator id according to applicable country authority. e.g: Spain -> CNMC (https://numeracionyoperadores.cnmc.es)
scheduled_portability_date string(date-time) false Earliest portability date if the portability must not be done as soon as possible as it would be done by default. Format according to ISO 8601
internal_portability boolean true This indicates if the portability is done between operators that share infrastructure
installation_required boolean true This indicates if a technician visit to the house is required for installation
donor_data DonorData true Personal data of the owner before portability

DonorData

1
2
3
4
5
6
7
8
9
{
  "name": "string",
  "surname": "string",
  "second_surname": "string",
  "identity_document": {
    "id_type": "NIF",
    "id": "5012341234"
  }
}
Name Type Required Description
name string true Person’s name
surname string false Person’s surname
second_surname string false Person’s second surname
identity_document IdentityDocument true Identification document

ContactInfo

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "name": "Diego",
  "surname": "Landolfi Espi",
  "identity_document": {
    "id_type": "NIF",
    "id": "5012341234"
  },
  "phone_number": "696288378",
  "email_address": "diego@hotmail.com"
}
Name Type Required Description
name string true none
surname string true none
identity_document IdentityDocument true Identification document
phone_number string false none
email_address string false none

Address

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
{
  "street_type": "Calle",
  "street_name": "Tellez",
  "house_number": "12",
  "additional_info": "Esc. Dcha 3 C",
  "city": "Riaza",
  "province": "Segovia",
  "country": "es",
  "post_code": "40500",
  "address_code": "28000010758100012    OA   004C       ",
  "address_additional_id": "123443554"
}
Name Type Required Description
street_type string true none
street_name string true none
house_number string true none
additional_info string false none
city string true none
province string false none
country string false none
post_code string true none
address_code string false none
address_additional_id string false Additional address info to improve the accuracy of feasibility check of access reuse

IdentityDocument

1
2
3
4
{
  "id_type": "NIF",
  "id": "5012341234"
}
Name Type Required Description
id_type string false none
id string false none
Property Values
id_type one of [NIF, PASSPORT, CIF, NIE, UNKNOWN]

AddOn

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "catalogue_value_added_service_legacy_id": "124",
  "catalogue_value_added_service_id": "124",
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ]
}
Name Type Required Description
catalogue_value_added_service_legacy_id string true MySim/Apollo related id for the Add-On catalogue resource definition
catalogue_value_added_service_id string true Catalogue add-on ID
promotions [PromotionRequest] false Ids of applicable promotions according to catalogue definition

FreeUnitsPackage

1
2
3
{
  "catalogue_free_units_packages_id": "124"
}
Name Type Required Description
catalogue_free_units_packages_id string true Catalogue free units packages ID

DevicesRelatedInfo

 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
{
  "devices": [
    {
      "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
      "reservation_id": "1567",
      "signature_process_id": "18395",
      "serial_number": "9876543-AB-345",
      "mac_address": "00-B0-D0-63-C2-26",
      "imei": "AA-BBBBBB-CCCCCC-D",
      "commitments": [
        {
          "catalogue_term_id": "123"
        }
      ],
      "insurable_amount": 135.49,
      "promotions": [
        {
          "catalogue_promotion_id": "123",
          "activation_date": "2022-12-01"
        }
      ]
    }
  ],
  "pre_booking": {
    "order_id": "123213asdsa",
    "authorization_id": "",
    "financial_entity": "BBVA",
    "agreed_commercial_consents": true,
    "agreed_gdpr": true,
    "status": "ACCEPTED",
    "granted_amount": 100,
    "credit_line_amount": 10
  },
  "delivery_info": {
    "contact_info": {
      "name": "Diego",
      "surname": "Landolfi Espi",
      "identity_document": {
        "id_type": "NIF",
        "id": "5012341234"
      },
      "phone_number": "696288378",
      "email_address": "diego@hotmail.com"
    },
    "address": {
      "street_type": "Calle",
      "street_name": "Tellez",
      "house_number": "12",
      "additional_info": "Esc. Dcha 3 C",
      "city": "Riaza",
      "province": "Segovia",
      "country": "es",
      "post_code": "40500",
      "address_code": "28000010758100012    OA   004C       ",
      "address_additional_id": "123443554"
    },
    "delivery_type": "CUSTOMER_ADDRESS",
    "dealer_code": "1234"
  }
}
Name Type Required Description
devices [Device] false [Devices associated to the subscription]
pre_booking PreFinancingBooking false none
delivery_info DeliveryInfo false Info to grant delivery of devices

DeliveryInfo

 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
{
  "contact_info": {
    "name": "Diego",
    "surname": "Landolfi Espi",
    "identity_document": {
      "id_type": "NIF",
      "id": "5012341234"
    },
    "phone_number": "696288378",
    "email_address": "diego@hotmail.com"
  },
  "address": {
    "street_type": "Calle",
    "street_name": "Tellez",
    "house_number": "12",
    "additional_info": "Esc. Dcha 3 C",
    "city": "Riaza",
    "province": "Segovia",
    "country": "es",
    "post_code": "40500",
    "address_code": "28000010758100012    OA   004C       ",
    "address_additional_id": "123443554"
  },
  "delivery_type": "CUSTOMER_ADDRESS",
  "dealer_code": "1234"
}
Name Type Required Description
contact_info ContactInfo true none
address Address true none
delivery_type string true Delivery type
dealer_code string false Dealer the store is associated to. Required if delivery_type is SHOP
Property Values
delivery_type one of [SHOP, POST_OFFICE, CUSTOMER_ADDRESS, UNKNOWN]

Device

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{
  "catalogue_commercial_device_id": "CDCVPU_150f5badaa706651e67c59061d373d7e7e",
  "reservation_id": "1567",
  "signature_process_id": "18395",
  "serial_number": "9876543-AB-345",
  "mac_address": "00-B0-D0-63-C2-26",
  "imei": "AA-BBBBBB-CCCCCC-D",
  "commitments": [
    {
      "catalogue_term_id": "123"
    }
  ],
  "insurable_amount": 135.49,
  "promotions": [
    {
      "catalogue_promotion_id": "123",
      "activation_date": "2022-12-01"
    }
  ]
}
Name Type Required Description
catalogue_commercial_device_id string true Commercial device id according to catalogue definition
reservation_id string false Id for device reservation
signature_process_id string false Id of the resource containing subscriber valid signature to purchase device
serial_number string false The serial number or any alphanumeric identifier of a particular device
mac_address string false A unique identifier assigned to the device network interface controller
imei string false The International Mobile Equipment Identity of the device
commitments [Commitment] false none
insurable_amount number false The insurable value of the device, representing the maximum coverage amount for insurance purposes. A null value indicates that the device is not insurable
promotions [PromotionRequest] false Ids of applicable promotions according to catalogue definition

PreFinancingBooking

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  "order_id": "123213asdsa",
  "authorization_id": "",
  "financial_entity": "BBVA",
  "agreed_commercial_consents": true,
  "agreed_gdpr": true,
  "status": "ACCEPTED",
  "granted_amount": 100,
  "credit_line_amount": 10
}
Name Type Required Description
order_id string true Order identifier
authorization_id string false Authorization identifier
financial_entity string true Financial entity involved
agreed_commercial_consents boolean true Indicates if the commercial consents have been agreed
agreed_gdpr boolean true Indicates if the GDPR has been agreed
status string true Status of the pre-booking
granted_amount number true Granted amount in the pre-booking
credit_line_amount number true Credit line amount in the pre-booking
Property Values
financial_entity one of [MASMOVIL, XCF, CELETEMLC, SABADELL, CETELEMLC, CETELEM, BBVA, NONE, UNKNOWN]
status one of [ACCEPTED, REJECTED]

Commitment

1
2
3
{
  "catalogue_term_id": "123"
}
Name Type Required Description
catalogue_term_id string false Catalogue term id

PromotionRequest

1
2
3
4
{
  "catalogue_promotion_id": "123",
  "activation_date": "2022-12-01"
}
Name Type Required Description
catalogue_promotion_id string true Catalogue promotion ID
activation_date string(date) false Promotion activation date. Format according to ISO 8601

PromotionsResponseSet

1
2
3
4
5
6
7
8
9
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "catalogue_id": "123",
    "activation_date": "2022-12-01",
    "expiration_date": "2022-12-01",
    "deactivation_date": "2022-12-01"
  }
]
Name Type Required Description
anonymous [PromotionResponse] false none

PromotionResponse

1
2
3
4
5
6
7
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "catalogue_id": "123",
  "activation_date": "2022-12-01",
  "expiration_date": "2022-12-01",
  "deactivation_date": "2022-12-01"
}
Name Type Required Description
id string(uuid) false Promotion unique identifier
catalogue_id string true Catalogue promotion ID
activation_date string(date) false Promotion activation date. Format according to ISO 8601
expiration_date string(date) false Promotion expiration date. Format according to ISO 8601
deactivation_date string(date) false Promotion expiration date. Format according to ISO 8601

CommercialTransaction

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "legacy_id": "242940268",
  "account_id": "ce2f20cb-35df-4ffe-bca6-c0ed0c28cb39",
  "status": "COMPLETED",
  "status_detail": "UNKNOWN",
  "type": "BUNDLE_SALE",
  "dealers_dealer_id": "1234",
  "creation_date": "2024-01-15T10:30:00Z",
  "creation_user": "john.doe@example.com",
  "creation_system": "SALES_API",
  "last_updated_date": "2024-01-15T10:35:00Z",
  "change_request_id": "987e6543-e21b-45c3-b678-123456789abc",
  "documents_contract_id": "CONTRACT_2024_001234",
  "legacy_fraud_request_id": "FRD_18395",
  "legacy_work_order_id": "WO_2024_5678",
  "catalogue_commercial_profile_id": "CP_PREMIUM_2024"
}
Name Type Required Description
id string(uuid) true Commercial transaction unique identifier
legacy_id string false Legacy identifier for backward compatibility
account_id string true Account unique identifier
status string true Current status of the commercial transaction
status_detail string false Detailed status information
type CommercialTransactionType true Type of commercial transaction
dealers_dealer_id string true Unique identifier of the dealer according to dealers system.
creation_date string(date-time) true Date and time when the transaction was created. Format according to ISO 8601
creation_user string true User who created the transaction
creation_system string true System that created the transaction
last_updated_date string(date-time) true Date and time of the last update. Format according to ISO 8601
change_request_id string(uuid) false Change request identifier associated with the transaction
documents_contract_id string false Contract document identifier according to documents system
legacy_fraud_request_id string false Legacy fraud request identifier according to MySim
legacy_work_order_id string false Legacy work order identifier according to MySim
catalogue_commercial_profile_id string false Catalogue commercial profile identifier used to make the sale
Property Values
status one of [IN_PROGRESS, COMPLETED, CANCELLED]
status_detail one of [UNKNOWN]

ErrorResponse

1
2
3
{
  "error": {}
}
Name Type Required Description
error ErrorDetails true none

ErrorDetails

1
{}
None