-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
1990 lines (1989 loc) · 59.7 KB
/
openapi.yaml
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.0.0
info:
contact:
email: api-help@bolt.com
name: Bolt
url: https://help.bolt.com/api-bolt/
description: A comprehensive Bolt API reference for interacting with Transactions, Orders, Product Catalog, Configuration, Testing, and much more.
termsOfService: https://www.bolt.com/end-user-terms
title: Bolt API Reference
version: 3.0.1
servers:
- url: https://{environment}.bolt.com/v3
variables:
environment:
default: api-sandbox
enum:
- api
- api-sandbox
tags:
- description: |
Account endpoints allow you to view and manage shoppers' accounts. For example,
you can add or remove addresses and payment information.
name: Account
- description: |
Use the Payments API to tokenize and process alternative payment methods including Paypal with Bolt. This API is for the Bolt
Accounts package.
name: Payments
- description: |
Callback endpoints are implemented on your servers to power Bolt experiences. Different Bolt packages require
different callbacks to be implemented.
name: Callbacks
- description: |
Endpoints that allow you to generate and retrieve test data to verify certain
flows in non-production environments.
name: Testing
- description: |
Use this endpoint to retrieve an OAuth token. Use the token to allow your ecommerce server to make calls to the Account
endpoint and create a one-click checkout experience for shoppers.
externalDocs:
url: https://help.bolt.com/products/accounts/direct-api/oauth-guide/
name: OAuth
paths:
/account:
get:
summary: Retrieve account details
operationId: accountGet
x-speakeasy-name-override: GetDetails
description: Retrieve a shopper's account details, such as addresses and payment information
tags:
- Account
security:
- oauth:
- bolt.account.manage
- bolt.account.view
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
responses:
'200':
description: The account details were successfully retrieved
content:
application/json:
schema:
$ref: '#/components/schemas/account'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/account/addresses:
post:
summary: Add an address
operationId: accountAddressCreate
x-speakeasy-name-override: AddAddress
description: Add an address to the shopper's account
tags:
- Account
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/address-listing'
examples:
address-all-fields:
$ref: '#/components/examples/address-all-fields'
address-some-fields:
$ref: '#/components/examples/address-some-fields'
responses:
'200':
description: The address was successfully added
content:
application/json:
schema:
$ref: '#/components/schemas/address-listing'
4XX:
$ref: '#/components/responses/response-address-error'
default:
$ref: '#/components/responses/response-default'
/account/addresses/{id}:
put:
summary: Edit an existing address
operationId: accountAddressEdit
x-speakeasy-name-override: UpdateAddress
description: |
Edit an existing address on the shopper's account. This does not edit addresses
that are already associated with other resources, such as transactions or
shipments.
tags:
- Account
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- in: path
name: id
schema:
type: string
example: D4g3h5tBuVYK9
required: true
description: The ID of the address to edit
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/address-listing'
examples:
address-all-fields:
$ref: '#/components/examples/address-all-fields'
address-some-fields:
$ref: '#/components/examples/address-some-fields'
responses:
'200':
description: The address was successfully edited
content:
application/json:
schema:
$ref: '#/components/schemas/address-listing'
4XX:
$ref: '#/components/responses/response-address-error'
default:
$ref: '#/components/responses/response-default'
delete:
summary: Delete an existing address
operationId: accountAddressDelete
x-speakeasy-name-override: DeleteAddress
description: |
Delete an existing address. Deleting an address does not invalidate transactions or
shipments that are associated with it.
tags:
- Account
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- in: path
name: id
schema:
type: string
example: D4g3h5tBuVYK9
required: true
description: The ID of the address to delete
responses:
'200':
description: The address was successfully deleted
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/account/exists:
get:
summary: Determine the existence of a Bolt account
operationId: accountExists
x-speakeasy-name-override: Detect
description: Determine whether or not an identifier is associated with an existing Bolt account.
tags:
- Account
security: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- $ref: '#/components/parameters/identifier'
responses:
'200':
description: An account associated with the specified identifier exists
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/account/payment-methods:
post:
summary: Add a payment method to a shopper's Bolt account Wallet.
operationId: accountAddPaymentMethod
x-speakeasy-name-override: AddPaymentMethod
description: |
Add a payment method to a shopper's Bolt account Wallet. For security purposes, this request must come from
your backend because authentication requires the use of your private key.<br />
**Note**: Before using this API, the credit card details must be tokenized using Bolt's JavaScript library function,
which is documented in [Install the Bolt Tokenizer](https://help.bolt.com/developers/references/bolt-tokenizer).
tags:
- Account
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/payment-method'
examples:
credit-card-address-reference-id:
$ref: '#/components/examples/credit-card-with-address-id'
credit-card-address-reference-explicit:
$ref: '#/components/examples/credit-card-with-address-explicit'
responses:
'200':
description: The payment method was successfully added
content:
application/json:
schema:
$ref: '#/components/schemas/payment-method'
4XX:
$ref: '#/components/responses/response-payment-method-error'
default:
$ref: '#/components/responses/response-default'
/account/payment-methods/{id}:
delete:
summary: Delete an existing payment method
operationId: accountPaymentMethodDelete
x-speakeasy-name-override: DeletePaymentMethod
description: |
Delete an existing payment method. Deleting a payment method does not invalidate transactions or
orders that are associated with it.
tags:
- Account
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- in: path
name: id
schema:
type: string
example: D4g3h5tBuVYK9
required: true
description: The ID of the payment method to delete
responses:
'200':
description: The payment method was successfully deleted
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/callbacks/accounts:
post:
x-speakeasy-ignore: true
summary: Callback to upsert full shopper account
operationId: callbackAccountUpsert
description: Create or update a shopper account with profile information, payment and addresses.
tags:
- Callbacks
security: []
parameters:
- $ref: '#/components/parameters/x-bolt-hmac-sha256'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/create-full-account'
responses:
'200':
description: The account details were successfully created/updated
4XX:
description: An error has occurred, and further details are contained in the response.
default:
description: An error has occurred, and further details are contained in the response.
/guest/payments:
post:
summary: Initialize a Bolt payment for guest shoppers
operationId: guestPaymentsInitialize
x-speakeasy-group: Payments.Guest
x-speakeasy-name-override: Initialize
description: |
Initialize a Bolt payment token that will be used to reference this payment to
Bolt when it is updated or finalized for guest shoppers.
tags:
- Payments
security:
- api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/guest-payment-initialize-request'
examples:
credit_card:
$ref: '#/components/examples/payment-initialize-payment-method-credit-card'
paypal:
$ref: '#/components/examples/payment-initialize-payment-method-paypal'
responses:
'200':
description: The payment was successfully initialized, and was either immediately finalized or is pending
content:
application/json:
schema:
$ref: '#/components/schemas/payment-response'
examples:
finalized:
$ref: '#/components/examples/payment-response-finalized'
pending:
$ref: '#/components/examples/payment-response-pending'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/guest/payments/{id}:
patch:
summary: Update an existing guest payment
operationId: guestPaymentsUpdate
x-speakeasy-group: Payments.Guest
x-speakeasy-name-override: Update
description: |
Update a pending guest payment
tags:
- Payments
security:
- api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- in: path
name: id
schema:
type: string
example: iKv7t5bgt1gg
required: true
description: The ID of the guest payment to update
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/payment-update-request'
responses:
'200':
description: The pending payment was successfully updated
content:
application/json:
schema:
$ref: '#/components/schemas/payment-response'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
post:
summary: Perform an irreversible action (e.g. finalize) on a pending guest payment
operationId: guestPaymentsAction
x-speakeasy-group: Payments.Guest
x-speakeasy-name-override: PerformAction
description: |
Perform an irreversible action on a pending guest payment, such as finalizing it.
tags:
- Payments
security:
- api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- in: path
name: id
schema:
type: string
example: iKv7t5bgt1gg
required: true
description: The ID of the guest payment to operate on
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/payment-action-request'
responses:
'200':
description: The action was successfully applied to the pending guest payment
content:
application/json:
schema:
$ref: '#/components/schemas/payment-response'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/oauth/token:
post:
summary: Get OAuth token
operationId: oauthGetToken
x-speakeasy-name-override: GetToken
description: Retrieve a new or refresh an existing OAuth token.
tags:
- OAuth
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/get-access-token-request'
responses:
'200':
description: Access token is successfully fetched
content:
application/json:
schema:
$ref: '#/components/schemas/get-access-token-response'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/payments:
post:
summary: Initialize a Bolt payment for logged in shoppers
operationId: paymentsInitialize
x-speakeasy-group: Payments.LoggedIn
x-speakeasy-name-override: Initialize
description: |
Initialize a Bolt payment token that will be used to reference this payment to
Bolt when it is updated or finalized for logged in shoppers.
tags:
- Payments
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/payment-initialize-request'
examples:
reference:
$ref: '#/components/examples/payment-initialize-payment-method-reference'
credit_card:
$ref: '#/components/examples/payment-initialize-payment-method-credit-card'
paypal:
$ref: '#/components/examples/payment-initialize-payment-method-paypal'
responses:
'200':
description: The payment was successfully initialized, and was either immediately finalized or is pending
content:
application/json:
schema:
$ref: '#/components/schemas/payment-response'
examples:
finalized:
$ref: '#/components/examples/payment-response-finalized'
pending:
$ref: '#/components/examples/payment-response-pending'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/payments/{id}:
patch:
summary: Update an existing payment
operationId: paymentsUpdate
x-speakeasy-group: Payments.LoggedIn
x-speakeasy-name-override: Update
description: |
Update a pending payment
tags:
- Payments
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- in: path
name: id
schema:
type: string
example: iKv7t5bgt1gg
required: true
description: The ID of the payment to update
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/payment-update-request'
responses:
'200':
description: The pending payment was successfully updated
content:
application/json:
schema:
$ref: '#/components/schemas/payment-response'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
post:
summary: Perform an irreversible action (e.g. finalize) on a pending payment
operationId: paymentsAction
x-speakeasy-group: Payments.LoggedIn
x-speakeasy-name-override: PerformAction
description: |
Perform an irreversible action on a pending payment, such as finalizing it.
tags:
- Payments
security:
- oauth:
- bolt.account.manage
api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
- in: path
name: id
schema:
type: string
example: iKv7t5bgt1gg
required: true
description: The ID of the payment to operate on
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/payment-action-request'
responses:
'200':
description: The action was successfully applied to the pending payment
content:
application/json:
schema:
$ref: '#/components/schemas/payment-response'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/testing/accounts:
post:
summary: Create a test account
operationId: testingAccountCreate
x-speakeasy-name-override: CreateAccount
description: |
Create a Bolt shopper account for testing purposes.
tags:
- Testing
security:
- api-key: []
parameters:
- $ref: '#/components/parameters/x-publishable-key'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/account-test-creation-data'
responses:
'200':
description: The account was successfully created
content:
application/json:
schema:
$ref: '#/components/schemas/account-test-creation-data'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
/testing/credit-cards:
get:
summary: Retrieve a test credit card, including its token
operationId: testingCreditCardGet
x-speakeasy-name-override: GetCreditCard
description: |
Retrieve test credit card information. This includes its token, which is
generated against the `4111 1111 1111 1004` test card.
tags:
- Testing
security:
- api-key: []
responses:
'200':
description: Successfully generated test credit card details
content:
application/json:
schema:
$ref: '#/components/schemas/test-credit-card'
4XX:
$ref: '#/components/responses/response-4xx'
default:
$ref: '#/components/responses/response-default'
components:
securitySchemes:
api-key:
in: header
name: X-API-Key
type: apiKey
oauth:
flows:
authorizationCode:
authorizationUrl: /v1/oauth/authorize
refreshUrl: /v1/oauth/token
scopes:
bolt.account.manage: This scope grants permissions to perform read/edit/delete actions on Bolt Account data
bolt.account.view: This scope grants permissions to perform read only actions on Bolt Account data
openid: This scope grants permissions that enable Bolt SSO by granting an id token JWT that stores account data
tokenUrl: /v1/oauth/token
type: oauth2
parameters:
x-publishable-key:
description: The publicly viewable identifier used to identify a merchant division.
in: header
name: X-Publishable-Key
required: true
schema:
type: string
identifier:
name: identifier
description: |
A type and value combination that defines the identifier used to detect
the existence of an account.
in: query
required: true
schema:
type: object
required:
- identifier_type
- identifier_value
properties:
identifier_type:
type: string
description: The type of identifier
enum:
- email
- email_sha256
example: email
identifier_value:
type: string
description: The value of the identifier. The value must be valid for the specified `identifier_type`
example: alice@example.com
examples:
email:
summary: Detect using an email
value:
identifier_type: email
identifier_value: alice@example.com
email_sha256:
summary: Detect using an email's SHA256 hash
value:
identifier_type: email_sha256
identifier_value: ff8d9819fc0e12bf0d24892e45987e249a28dce836a85cad60e28eaaa8c6d976
x-bolt-hmac-sha256:
description: Bolt signed HMAC for hook verification
in: header
name: X-Bolt-Hmac-Sha256
required: true
schema:
type: string
responses:
response-default:
description: An error has occurred, and no further details are provided (e.g. 5xx errors)
response-4xx:
description: An error has occurred, and further details are contained in the response
content:
application/json:
schema:
$ref: '#/components/schemas/error'
response-address-error:
description: The address is invalid and cannot be added, or some other error has occurred
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/error'
- $ref: '#/components/schemas/address-error'
examples:
missing-input:
summary: A required field is missing
value:
.tag: missing_input_parameter
message: country_code is required
invalid-input:
summary: A field has a malformed value that does not conform to the schema
value:
.tag: invalid_input_parameter
message: country_code value ZZ is invalid
invalid-postal-code:
summary: The postal code is invalid
value:
.tag: invalid_postal_code
message: postal_code value 94404 is not valid for country_code value CA
invalid-region:
summary: The region is missing or is invalid
value:
.tag: invalid_region
message: region value BC is not valid for country_code value US
response-payment-method-error:
description: The payment method is invalid and cannot be added, or some other error has occurred
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/error'
- $ref: '#/components/schemas/credit-card-error'
examples:
missing-input:
summary: A required field is missing
value:
.tag: missing_input_parameter
message: token is required
invalid-input:
summary: A field has a malformed value that does not conform to the schema
value:
.tag: invalid_input_parameter
message: last4 value 104 is invalid
invalid-credit-card:
summary: The credit card payment method could not be added because it was declined
value:
.tag: declined_invalid_cvv
message: The payment was declined because the CVV is not valid
schemas:
address:
type: object
description: A physical address.
required:
- id
- first_name
- last_name
- street_address1
- locality
- postal_code
- country_code
properties:
id:
type: string
description: The address's unique identifier.
readOnly: true
example: D4g3h5tBuVYK9
first_name:
type: string
description: The first name of the person associated with this address.
example: Alice
last_name:
type: string
description: The last name of the person associated with this address.
example: Baker
company:
type: string
description: The company associated with this address.
example: ACME Corporation
street_address1:
type: string
description: The street address associated with this address.
example: 535 Mission St, Ste 1401
street_address2:
type: string
description: Any additional, optional, street address information associated with this address.
example: c/o Shipping Department
locality:
type: string
description: The locality (e.g. city, town, etc...) associated with this address.
example: San Francisco
postal_code:
type: string
description: The postal code associated with this address.
example: '94105'
region:
type: string
description: The region or administrative area (e.g. state, province, county, etc...) associated with this address.
example: CA
country_code:
type: string
description: The country (in its ISO 3166 alpha-2 format) associated with this address.
enum:
- AF
- AX
- AL
- DZ
- AS
- AD
- AO
- AI
- AQ
- AG
- AR
- AM
- AW
- AU
- AT
- AZ
- BH
- BS
- BD
- BB
- BY
- BE
- BZ
- BJ
- BM
- BT
- BO
- BQ
- BA
- BW
- BV
- BR
- IO
- BN
- BG
- BF
- BI
- KH
- CM
- CA
- CV
- KY
- CF
- TD
- CL
- CN
- CX
- CC
- CO
- KM
- CG
- CD
- CK
- CR
- CI
- HR
- CU
- CW
- CY
- CZ
- DK
- DJ
- DM
- DO
- EC
- EG
- SV
- GQ
- ER
- EE
- ET
- FK
- FO
- FJ
- FI
- FR
- GF
- PF
- TF
- GA
- GM
- GE
- DE
- GH
- GI
- GR
- GL
- GD
- GP
- GU
- GT
- GG
- GN
- GW
- GY
- HT
- HM
- VA
- HN
- HK
- HU
- IS
- IN
- ID
- IR
- IQ
- IE
- IM
- IL
- IT
- JM
- JP
- JE
- JO
- KZ
- KE
- KI
- KP
- KR
- KW
- KG
- LA
- LV
- LB
- LS
- LR
- LY
- LI
- LT
- LU
- MO
- MK
- MG
- MW
- MY
- MV
- ML
- MT
- MH
- MQ
- MR
- MU
- YT
- MX
- FM
- MD
- MC
- MN
- ME
- MS
- MA
- MZ
- MM
- NA
- NR
- NP
- NL
- NC
- NZ
- NI
- NE
- NG
- NU
- NF
- MP
- 'NO'
- OM
- PK
- PW
- PS
- PA
- PG
- PY
- PE
- PH
- PN
- PL
- PT
- PR
- QA
- RE
- RO
- RU
- RW
- BL
- SH
- KN
- LC
- MF
- PM
- VC
- WS
- SM
- ST
- SA
- SN
- RS
- SC
- SL
- SG
- SX
- SK
- SI
- SB
- SO