-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrade-account-v2-api.yaml
More file actions
2155 lines (2138 loc) · 80.4 KB
/
Copy pathtrade-account-v2-api.yaml
File metadata and controls
2155 lines (2138 loc) · 80.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: Trade Account API V2 (deprecated)
version: '2.0'
description: |-
**Deprecated: please use [Trade Account API V3](/docs/api/trade-account-v3/trade-account-api-v-3-preview/) instead.**
This API allows you to onboard your business customers to your own product and to the Two "Buy Now Pay Later" product.
Specifically:
- Enable 1-click checkout with Two
- Approve additional users to place orders on behalf of your business customers
- Access insights and enriched data on your business customers
- Receive validation that Two believes it is an accurate and valid representative of the business
Note: Merchant ID is denoted as `mid`. This can be obtained alongside the API key from the [merchant portal](https://portal.two.inc/merchant/integration).
### Step 1: Create a B2B business customer
- Create a new business customer using the `POST /v2/merchant/<mid>/customer` endpoint.
### Step 2: Create users for your business customers.
- The employees who place orders on behalf of your business customer (their employer), can be set up for purchasing through `POST /v2/merchant/<mid>/customer/<cid>/user`.
- Upon successfully creating a customer user, onboarding is completed. You may optionally redirect the user to the `user_verification_url` for them to verify their account. Verification of the customer user will allow one-click purchases for the customer user.
- Remember to keep contact info up-to-date, like email and phone number, through `PUT /v2/merchant/<mid>/customer/<cid>/user/<uid>`
Note: Two reserves the right to add extra verification steps for certain orders.
## Environments
### Testing
[https://api.sandbox.two.inc](https://api.sandbox.two.inc/v1/health)
Note: Read about our [sandbox environment specific behaviour](/docs/guides/sandbox-behaviour-page/).
### Production
[https://api.two.inc](https://api.two.inc/v1/health)
tags:
- name: Merchant Customer Onboarding
- name: Merchant Customer User Onboarding
paths:
/v2/merchant/{mid}/customer:
post:
summary: Create customer record
operationId: create_merchant_customer_v2_handler.post
description: ''
tags:
- Merchant Customer Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerCreateRequestSchemaV2'
get:
summary: Get customer list
operationId: get_merchant_customers_v2_handler.get
description: Fetch a list of customers. Use ?limit or ?page_cursor parameter
for cursor-based pagination.
tags:
- Merchant Customer Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: limit
in: query
schema:
anyOf:
- minimum: 0
type: integer
- type: 'null'
default: null
description: The maximum number of items on a single page, ie
the page size.
title: Limit
required: false
description: The maximum number of items on a single page, ie the
page size.
- name: page_cursor
in: query
schema:
anyOf:
- minLength: 1
type: string
- type: 'null'
default: null
description: The requested page, base64str encoded.
title: Page Cursor
required: false
description: The requested page, base64str encoded.
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: Customer list - returns CustomerResponseListSchemaV2
by default, or CustomerResponseListPaginatedSchemaV2 when
limit parameter is provided
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerResponseListUnionSchemaV2'
security:
- X-Api-Key: []
deprecated: true
/v2/merchant/{mid}/customer/{cid}:
put:
summary: Replace customer record
operationId: replace_merchant_customer_v2_handler.put
description: ''
tags:
- Merchant Customer Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerReplaceRequestSchemaV2'
patch:
summary: Patch customer record
operationId: update_merchant_customer_v2_handler.patch
description: ''
tags:
- Merchant Customer Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUpdateRequestSchema'
get:
summary: Get customer record
operationId: get_merchant_customer_v2_handler.get
description: ''
tags:
- Merchant Customer Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
/v2/merchant/{mid}/customer_lookup/{merchant_customer_id}:
get:
summary: Get customer from external customer ID
operationId: get_merchant_customer_lookup_v2_handler.get
description: ''
tags:
- Merchant Customer Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: merchant_customer_id
in: path
required: true
schema:
type: string
description: External customer ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'302':
description: Redirect to the GET customer endpoint (/v2/merchant/<mid>/customer/<cid>)
security:
- X-Api-Key: []
deprecated: true
/v2/merchant/{mid}/customer/{cid}/user:
post:
summary: Create customer user record
operationId: create_merchant_customer_user_v2_handler.post
description: ''
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserCreateRequestSchemaV2'
get:
summary: Get customer user list
operationId: get_merchant_customer_users_v2_handler.get
description: Fetch a list of users attached to the business customer account.
Use ?limit or ?page_cursor parameter for cursor-based pagination.
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: limit
in: query
schema:
anyOf:
- minimum: 0
type: integer
- type: 'null'
default: null
description: The maximum number of items on a single page, ie
the page size.
title: Limit
required: false
description: The maximum number of items on a single page, ie the
page size.
- name: page_cursor
in: query
schema:
anyOf:
- minLength: 1
type: string
- type: 'null'
default: null
description: The requested page, base64str encoded.
title: Page Cursor
required: false
description: The requested page, base64str encoded.
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: Customer user list - returns CustomerUserResponseListSchemaV2
by default, or CustomerUserResponseListPaginatedSchemaV2 when
limit parameter is provided
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserResponseListUnionSchemaV2'
security:
- X-Api-Key: []
deprecated: true
/v2/merchant/{mid}/customer/{cid}/user/{uid}/verification:
post:
summary: Attach an existing verified verification to an existing merchant
customer user.
operationId: attach_merchant_customer_user_verification_v2_handler.post
description: ''
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: uid
in: path
required: true
schema:
type: string
description: User ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserResponseSchemaV2'
security:
- X-Api-Key: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserAttachVerificationRequestSchema'
/v2/merchant/{mid}/customer/{cid}/user/{uid}:
patch:
summary: Update a customer user record
operationId: update_merchant_customer_user_v2_handler.patch
description: ''
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: uid
in: path
required: true
schema:
type: string
description: User ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserUpdateRequestSchema'
put:
summary: Replace customer user record
operationId: replace_merchant_customer_user_v2_handler.put
description: ''
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: uid
in: path
required: true
schema:
type: string
description: User ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserReplaceRequestSchemaV2'
delete:
summary: Delete customer user record.
operationId: delete_merchant_customer_user_v2_handler.delete
description: ''
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: uid
in: path
required: true
schema:
type: string
description: User ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'204':
description: No Content
security:
- X-Api-Key: []
deprecated: true
get:
summary: Get customer user record
operationId: get_merchant_customer_user_v2_handler.get
description: ''
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: uid
in: path
required: true
schema:
type: string
description: User ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
/v2/merchant/{mid}/customer/{cid}/user/{uid}/notify:
post:
summary: Notify customer user
operationId: notify_onboarding_handler.post
description: Send a notification to customer user with a URL to complete
onboarding via specified notification channel.
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: uid
in: path
required: true
schema:
type: string
description: User ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
security:
- X-Api-Key: []
deprecated: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/NotifyRequestSchema'
/v2/merchant/{mid}/customer/{cid}/user_lookup/{merchant_user_id}:
get:
summary: Get customer user record from external user ID
operationId: get_merchant_customer_user_lookup_v2_handler.get
description: ''
tags:
- Merchant Customer User Onboarding
parameters:
- name: mid
in: path
required: true
schema:
type: string
description: Merchant ID
- name: cid
in: path
required: true
schema:
type: string
description: Customer ID
- name: merchant_user_id
in: path
required: true
schema:
type: string
description: External user ID
responses:
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CustomerUserResponseSchemaV2'
security:
- X-Api-Key: []
deprecated: true
components:
schemas:
ErrorResponse:
properties:
error_code:
anyOf:
- type: string
- type: 'null'
default: null
description: An error code related to the error.
title: Error Code
error_details:
anyOf:
- type: string
- type: 'null'
default: null
description: A detailed description of the error when available.
title: Error Details
error_message:
anyOf:
- type: string
- type: 'null'
default: null
description: A short description of the error.
title: Error Message
error_json:
anyOf:
- items:
$ref: '#/components/schemas/ErrorJSON'
type: array
- type: 'null'
default: null
description: A list of errors when available.
title: Error Json
error_trace_id:
anyOf:
- type: string
- type: 'null'
default: null
description: A unique trace ID for the request that generated
the error. Please quote this trace ID in any support requests.
title: Error Trace Id
title: ErrorResponse
type: object
ErrorJSON:
properties:
loc:
anyOf:
- items:
anyOf:
- type: string
- type: integer
type: array
- type: 'null'
default: null
description: Error location.
title: Loc
msg:
anyOf:
- type: string
- type: 'null'
default: null
description: Error message.
title: Msg
type:
anyOf:
- type: string
- type: 'null'
default: null
description: Error type.
title: Type
ctx:
anyOf:
- type: string
- additionalProperties: true
type: object
- type: 'null'
default: null
description: Error context information.
title: Ctx
title: ErrorJSON
type: object
CustomerCreateRequestSchemaV2:
description: Web schema for merchant customer create
example:
billing_email_address: example@gmail.com
country_prefix: GB
legal_name: TWO B2B LTD
merchant_customer_id: merchant-cid-123
merchant_redirect_urls:
onboarding_completed_url: https://www.success.com/
onboarding_failed_url: https://www.afternic.com/forsale/failed.com?utm_source=TDFS&utm_medium=sn_affiliate_click&utm_campaign=TDFS_Affiliate_namefind_direct9&traffic_type=CL3&traffic_id=Namefind
official_address:
city: London
country: GB
id: '12345'
organization_name: TWO B2B LTD
postal_code: EC2A 4BT
region: GB
street_address: 4 Crown Pl
organization_id: '13078389'
shipping_address:
city: London
country: GB
id: '12345'
organization_name: TWO B2B LTD
postal_code: EC2A 4BT
region: GB
street_address: 4 Crown Pl
website: example.com
properties:
billing_email_address:
anyOf:
- format: email
type: string
- type: 'null'
default: null
deprecated: true
description: Deprecated, please use invoice_email_addresses.
title: Billing Email Address
invoice_email_addresses:
anyOf:
- items:
format: email
type: string
type: array
- type: 'null'
default: null
description: These email addresses is designated to receive the
invoices attached to this trade account in addition to the
user email used to create orders. In case the order is placed
using a billing account ID, emails will be directed to the
address specified for that billing account instead.
title: Invoice Email Addresses
email_domain:
anyOf:
- type: string
- type: 'null'
default: null
deprecated: true
description: Unique name that appears after the @ sign in email
addresses
title: Email Domain
legal_name:
anyOf:
- type: string
- type: 'null'
default: null
deprecated: true
description: The legal name of the buyer company, deprecated as
Two company search will set the customer legal name
title: Legal Name
merchant_customer_id:
description: The customer id registered in the merchant's solution
maxLength: 255
minLength: 1
title: Merchant Customer Id
type: string
merchant_redirect_urls:
anyOf:
- $ref: '#/components/schemas/MerchantRedirectUrlsSchema'
- type: 'null'
default: null
deprecated: true
official_address:
$ref: '#/components/schemas/CreateAddressRequestSchema'
description: Address fields connected to the business customer
website:
anyOf:
- type: string
- type: 'null'
default: null
description: The website of the business customer
title: Website
insights_webhook:
anyOf:
- type: string
- type: 'null'
default: null
deprecated: true
description: Deprecated
title: Insights Webhook
shipping_addresses:
anyOf:
- items:
$ref: '#/components/schemas/CreateAddressRequestSchema'
type: array
- type: 'null'
default: null
description: Address fields connected to the business customer
title: Shipping Addresses
trade_name:
anyOf:
- type: string
- type: 'null'
default: null
description: If the company is using a different brand/trade name,
this can included here.
title: Trade Name
webhooks:
anyOf:
- $ref: '#/components/schemas/HookSchema'
- type: 'null'
default: null
additional_identifiers:
anyOf:
- additionalProperties:
type: string
propertyNames:
$ref: '#/components/schemas/AdditionalIdentifierSchemaEnum'
type: object
- type: 'null'
default: null
description: Optionally provide us with any other relevant identifiers
related to this company.
title: Additional Identifiers
estimated_monthly_spend:
anyOf:
- format: decimal
pattern: ^-?[0-9]+(\.[0-9]{0,2})?
type: string
- type: 'null'
default: null
description: The estimated monthly spend for the customer.
title: Estimated Monthly Spend
canonical_id:
anyOf:
- type: string
- type: 'null'
default: null
description: Canonical company identifier. If provided, country_prefix
and organization_id are optional.
title: Canonical Id
country_prefix:
anyOf:
- $ref: '#/components/schemas/CountryCodeEnum'
- type: 'null'
default: null
description: Country code in ISO 3166-1 alpha-2 format. Required
if canonical_id is not provided.
examples:
- GB
organization_id:
anyOf:
- maxLength: 255
minLength: 1
type: string
- type: 'null'
default: null
description: Organization number of the buyer company. Required
if canonical_id is not provided.
title: Organization Id
required:
- merchant_customer_id
- official_address
title: CustomerCreateRequestSchemaV2
type: object
AdditionalIdentifierSchemaEnum:
enum:
- GOOGLE_PLACES
title: AdditionalIdentifierSchemaEnum
type: string
CountryCodeEnum:
enum:
- AD
- AE
- AL
- AM
- AO
- AR
- AT
- AU
- AZ
- BA
- BB
- BD
- BE
- BF
- BG
- BH
- BI
- BJ
- BN
- BO
- BR
- BS
- BW
- CA
- CG
- CH
- CL
- CM
- CO
- CR
- CY
- CZ
- DE
- DJ
- DK
- DO
- DZ
- EC
- EE
- EG
- ES