-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisa-card-program-management.yml
More file actions
1701 lines (1621 loc) · 61.4 KB
/
Copy pathvisa-card-program-management.yml
File metadata and controls
1701 lines (1621 loc) · 61.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.0.1
info:
title: Visa Card Program Management
description: ''
version: '1'
servers:
- url: https://sandbox.api.visa.com
description: Sandbox server
security: []
tags:
- name: 'Visa Card Program Enrollment '
description: >-
VCPE supports issuers that want to offer instant/digital issuance or
re-issuance; as well as allow their cardholders to upgrade and downgrade
cards in their banking app and enjoy new rewards programs in near
real-time without needing a physical card and without changing their
16-digit card number.
paths:
/vcpe/v2/pan/enrollment:
post:
tags:
- 'Visa Card Program Enrollment '
summary: Enrollment
description: Process enrollment and handover message to ALM.
operationId: enrollmentV2UsingPOST
parameters:
- name: Accept
in: header
description: >-
Content-Types that are acceptable for the response. Example-
application/json
required: true
explode: false
allowReserved: false
schema:
type: string
- name: Accept-Language
in: header
description: >-
List of acceptable languages for the response. Defaults to en-US if
not present. Example- en-US
required: false
explode: false
allowReserved: false
schema:
type: string
- name: Content-Type
in: header
description: The type of the request body. Example- application/json
required: true
explode: false
allowReserved: false
schema:
type: string
- name: Content-Language
in: header
description: >-
The language of the request body. Defaults to en-US if not present.
Example- en-US
required: false
explode: false
schema:
type: string
requestBody:
content:
application/json:
schema:
required:
- operationType
- updateReferenceID
type: object
properties:
operationType:
type: string
description: >-
Type of operation. Format: It is one of the following
values:
UPDATE
enrollmentInfo:
type: object
properties:
cardholderInfo:
required:
- primaryAccountNumber
type: object
properties:
primaryAccountNumber:
maxLength: 19
type: string
description: Primary account number
description: Required
accountLevelInfo:
type: object
properties:
productID:
maxLength: 2
type: string
description: >-
This is the product ID for the card number in the
Account Number field. It is required, when the
rpinEnrollment structure is provided in the request,
or when the linkEnrollment structure is present for
either the USHNW or VIRTUAL groupType. For example
if the product type of the card is Visa Traditional
Credit, the value of productID is A.
linkEnrollment:
type: object
properties:
group:
type: array
description: Required. Array of Groups
items:
type: object
properties:
action:
type: string
description: >-
(REQUIRED if linkEnrollment segment is
present)
Action taken on the record for an enrollment link. Format: It is one of the following values:
Add Record is for a new link.
Delete Record is for removing a link.
Change Can only be used to change the Primary Account flag.
groupID:
maxLength: 32
type: string
description: >-
(REQUIRED if linkEnrollment segment is
present)
Contains the issuer-supplied identifier for the group type specified in the Group Type field. Must not be PAI/PII data. Format: String; alphabetic, numeric, hyphens ( - ), and underscores ( _) [a-zA-Z0-9-_ ].
groupType:
type: string
description: >-
(REQUIRED if linkEnrollment segment is
present)
Group type. Format: It is one of the following values:
LOC Groups a primary card account with
authorized accounts from other
cardholders.
CUSTOMER Groups a set of card accounts for the same cardholder.
VIRTUAL Groups a primary card account with a set of virtual cards.
Note: A value for productID must be specified. Contact your Visa representative before
submitting a request using the VIRTUAL Group Type.
USHNW
Note: A value for productID must be specified.
A variety of customized Group Types may be available, depending on region, issuer, or other criteria. Additional Group Types and values for those Group Types may be required, depending on region, issuer, or other criteria. For information on these Group Types, see their respective Product Implementation Guides. Issuers should consult the respective Product Implementation Guides for details on how to submit primary/supplementary flags to generate accurate billing information for those related products with associated card fees. For more information, contact your Visa representative.
isPrimaryAccount:
type: string
description: >-
(Conditional) Whether the account the
account number is to be the primary
account number in the group.. Used for
group types that have a primary or owner
account. It is required when groupType is
LOC, or VIRTUAL. It should be set to Y for
Primary (physical plastic card). Issuers
should refer to the Product Implementation
Guide for requirements related to custom
group types. Format: It is one of the
following values:
Y The account number is to be the primary account number in the group.
BlankThe account number is not the primary account number.
description: >-
Optional. Contains linking information for the
account number. Link enrollment information is not
required when sending request only for RPIN
enrollment or replace enrollment.
rpinEnrollment:
type: object
properties:
rpin:
maxLength: 6
type: string
description: |2-
(REQUIRED if rpinEnrollment segment is present)
The six-digit Visa-provided Registered Program Identification Number (RPIN) in which this account is enrolled. The RPINs product ID in the Visa system must match the product ID provided in the web service call. Format: String; numeric; max length 6 characters.
action:
type: string
description: >-
(REQUIRED if rpinEnrollment segment is present)
Action for RPIN Enrollment. Format: It is one of the following values:
Add Use Add when submitting new card numbers;
record is for a new account number. All required
fields must be provided.
Change Use if changing any attribute in
rpinEnrollment data. A change record will fully
replace all data in the original record. Every
required field must be submitted in a change
record. If issuers wish to preserve previously
submitted optional data, this data must be
resubmitted.
Delete Use if removing an account number. For
delete records, all other fields are optional.
accountOpenDate:
maxLength: 10
type: string
description: |-
(REQUIRED if rpinEnrollment segment is present)
The date the account number was first opened with the issuer. Format: String in the form of YYYYMMDD.
rpinEffectiveDate:
maxLength: 10
type: string
description: >-
(Optional) The RPIN effective date, which can be
a past or future date, but it must be a date
that is after the RPIN create-date and before
the RPIN end-date. If the date does not follow
these rules, the request is rejected with an
Invalid Date reject reason. It will default to
the current date if the correct date is not
provided. Format: String; YYYYMMDD.
description: >-
Optional. Contains information to enroll the account
number in a given Registered Program Identification
Number (RPIN). This field is not required when
sending request only for linking or replacement.
replaceEnrollment:
type: object
properties:
linkReasonCode:
maxLength: 1
type: string
description: >-
(Conditional) The reason for replacement.
Format: It is one of the following values:
L Lost: Consumer reports the card has been lost.
S Stolen: Consumer reports the card has been stolen.
U Upgrade/Downgrade: Consumer has been issued a new product.
O Other: Used when no other value applies.
C Converted
R Reissued
N Not known
unlinkIndicator:
maxLength: 1
type: string
description: >-
(Conditional) Unlink indicator. This must be set
to Y when deleting a replacement relationship.
Format: It is one of the following values:
Y User is trying to unlink the account number
oldAccountNumber:
maxLength: 19
type: string
description: >-
(REQUIRED if replaceEnrollment segment is
present)
A valid account number specifying the card is being replaced by the card number in the Account Number field.
description: >-
Optional. Contains information about card
replacement for the account number. This information
can be sent independently of other structures such
as rpinEnrollment or linkEnrollment
customerContactInfo:
type: object
properties:
email:
maxLength: 100
type: string
description: >-
(Conditional) Account holders email address.
Required when prefMethodOfContact is E.
action:
type: string
description: >-
(REQUIRED if customerContactInfo segment is
present)
If an action other than Add is selected, the webservice call will be rejected.
Format: It is one of the following values:
Add Use this to add new customer information. All required fields must be provided.
address:
type: object
properties:
zip:
maxLength: 5
type: string
description: >-
(Conditional) Account holders zipcode.
Required for the US, but can be left blank
for a non-US address. Format: String;
numeric.
city:
maxLength: 30
type: string
description: >-
(REQUIRED if customerContactInfo segment is
present)
City associated with the account holders address. Format: String; alphanumeric; UTF-8, white space, carat (^), period (.), single quote (), asterisk (*), and hyphen (-) are allowed.
line1:
maxLength: 40
type: string
description: >-
(Required) First line associated with the
account holders address. Format: String;
alphanumeric; UTF-8, white space, comma (,),
underscore (_), hashtag (#), colon (:),
forward slash (/), period (.), single quote
(), asterisk (*), and hyphen (-) are
allowed.
line2:
maxLength: 40
type: string
description: >-
(Optional) Second line associated with the
account holders address. Format: String;
alphanumeric; UTF-8, white space, comma (,),
underscore (_), hashtag (#), colon (:),
forward slash (/), period (.), single quote
(), asterisk (*), and hyphen (-) are
allowed.
state:
maxLength: 2
type: string
description: >-
(Conditional) State or province code
associated with the account holders
address. Required for the US, but can be
left blank for a non-US address. Example: NY
Format: String; ISO 3166-2.
companyName:
maxLength: 40
type: string
description: >-
(Conditional) Account holders company name.
Format: String; alphanumeric; UTF-8, white
space, comma (,), underscore (_), hashtag
(#), colon (:), forward slash (/), period
(.), single quote (), and hyphens (-) are
allowed.
description: >-
(Optional) Address details for the account
holder.
lastName:
maxLength: 25
type: string
description: >-
(REQUIRED if customerContactInfo segment is
present)
Account holders last name.
firstName:
maxLength: 15
type: string
description: >-
(REQUIRED if customerContactInfo segment is
present)
Account holders first name.
namePrefix:
maxLength: 5
type: string
description: (Optional) Account holders name prefix.
nameSuffix:
maxLength: 5
type: string
description: (Optional) Account holders name suffix.
mobileNumber:
maxLength: 10
type: string
description: >-
(Conditional) Account holders telephone number.
Required when prefMethodOfContact is C.
middleInitial:
maxLength: 1
type: string
description: (Optional) Account holders middle initial.
prefMethodOfContact:
maxLength: 1
type: string
description: >-
(Optional) Account holders preferred method of
contact; if a space or an empty string is
specified, the preferred method of contact is no
preference.
Format: It is one of the following values: M Physical mail.
E E mail.
C Mobile telephone.
description: >-
Optional, Contains account-number-specific
information such as name and address. It is only
accepted for certain Visa Product IDs but ignored
for all other product IDs. When specified, it must
have the accompanying rpinEnrollment structure in
its entirety.
updateReferenceID:
maxLength: 32
type: string
description: >-
Reference ID that is needed to track all account level
updates.
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
'202':
description: Accepted. Request successfully persisted to queue.
'400':
description: Bad request. Incorrect parameters supplied.
'500':
description: Internal Server Error.
x-operationVersions:
- label: v2 - Latest
operationPointer: '#/paths/~1vcpe~1v2~1pan~1enrollment/post'
default: false
x-hideTryIt: true
components:
schemas:
date:
type: string
description: Date in GMT
format: date
Locale:
title: Locale
maxLength: 12
minLength: 2
pattern: ([a-zA-Z]{2,8})-([a-zA-Z]{2}|[0-9]{3})
type: string
description: >
Locale in in [IETF BCP 47 format](https://tools.ietf.org/html/bcp47)
The BCP 47 locale format is <Language Subtag>-<Extended Language Subtag
(Optional)>-<Script Subtag (Optional)>-<Region Subtag
(Optional)>-<Variant1 Subtag (Optional)>-<Variant2 Subtag (Optional)>
However, only following locale formats are supported by VCPE API:
<Language Subtag>-<Region Subtag>
Language Subtag: [a-zA-Z]{2,8}
Region Subtag: [a-zA-Z]{2} | [0-9]{3}
example: en-US
dateTime:
type: string
description: date Time in GMT
format: date-time
example: '2017-07-21T17:32:28Z'
StandardError:
title: Standard Error Response Structure
required:
- errorResponse
type: object
properties:
errorResponse:
$ref: '#/components/schemas/ErrorResponse'
description: >-
API errors are reported using a Standard Error Response structure. All
errors are categorized into Standard errors and Business errors.
Standard errors can be returned by any API and should be handled in a
common way. Business errors are returned only by some APIs and are
documented for each API.
InvalidRpin:
type: object
properties:
result:
type: boolean
enum:
- false
errorMsg:
type: string
enum:
- INVALID_RPIN
errorCode:
type: string
enum:
- '2'
invalidRpin:
$ref: '#/components/schemas/rpin'
RpinAttributes:
title: RPIN Metadata Details
type: object
properties:
rpin:
$ref: '#/components/schemas/rpin'
country:
type: string
description: The country to which the RPIN belongs
example: '036'
endDate:
$ref: '#/components/schemas/date'
rpinBid:
$ref: '#/components/schemas/bid'
rpinName:
type: string
description: The RPIN Name.
example: VTR Premium
vertical:
type: string
description: The Vertical type
format: enum
example: CASHBACK
enum:
- CASHBACK
- COHOTEL
- COAIRLINE
- COGAS
- CORETAIL
- COAUTO
- COENTERTAIN
- COAFFINITY
- COFINSERV
- COOTHER
- COTRAVELSVC
- GENOTHER
- GENTRAVEL
- GENWEALTH
startDate:
$ref: '#/components/schemas/date'
cardCounts:
type: number
description: Cards enrolled in the RPIN.
format: integer
example: 1000000
programBid:
$ref: '#/components/schemas/bid'
rpinStatus:
type: string
description: Status of teh RPIN.
format: enum
example: CMF
enum:
- ACTIVE
- PENDING
- CHANGEPENDING
- DEACTIVATED
- DEACTIVATION_PENDING
- REJECTED
- APPROVED
spendRules:
type: array
items:
type: object
properties:
spendRuleName:
type: string
description: Name of Spend Rules associated with RPIN.
example: 'FRC_SPEND '
programName:
type: string
description: The Program to which RPIN is associated
example: VTR Premium
programType:
type: string
description: The Program type
format: enum
example: VTR Premium
enum:
- COBRAND
- GEN_REWARDS
- NON_REWARDS
- CASH
rpinBidName:
$ref: '#/components/schemas/bidName'
rpinCobrand:
type: string
description: The Cobrand or Affinity for the RPIN.
example: Grocery
rpinMetadata:
type: array
items:
type: object
properties:
attributeTagName:
type: string
description: UBID for the PAN's range. 8 in length.
format: enum
example: PORTFOLIO
enum:
- PORTFOLIO
- PROGRAM_SUB_CAT
- VERTICAL_SUB_CAT
- LOC
- CCP_ENABLED
- VIRTUAL
- REPORTING
- SECURED_CRD
- AUTOREG
attributeTagValue:
type: string
description: Value of the tag.
format: string
rpinProductId:
$ref: '#/components/schemas/productId'
rpinRefNumber:
type: string
description: The RPIN Reference Number.
example: 0047890ABN
programBidName:
$ref: '#/components/schemas/bidName'
accountRangeAssoc:
type: array
items:
type: object
properties:
arMax:
type: string
description: Account Range Maximum.
format: string
arMin:
type: string
description: Account Range Minimum.
format: string
autoRegAR:
type: string
description: If the account range registered is due to auto registration.
format: boolean
endDateOfAssoc:
$ref: '#/components/schemas/date'
starteDateOfAssoc:
$ref: '#/components/schemas/date'
lastCardEnrollDate:
$ref: '#/components/schemas/date'
CardAttributesDoc:
title: Card Attribute Details
type: object
properties:
pan:
$ref: '#/components/schemas/pan'
portfolio:
$ref: '#/components/schemas/CardPortfolioDetails'
linkDetails:
$ref: '#/components/schemas/LinkDetails'
updateChannel:
$ref: '#/components/schemas/updateChannel'
processingDetails:
$ref: '#/components/schemas/ProcessingDetails'
replacementDetails:
$ref: '#/components/schemas/ReplacementDetails'
lastUpdateTimestamp:
$ref: '#/components/schemas/dateTime'
ProcessingDetails:
title: Processing Details
type: object
properties:
cardProcProductId:
$ref: '#/components/schemas/productId'
spendQualifiedIndicator:
type: string
description: Spend Qualified Indicator
format: enum
example: 'N'
enum:
- 'N'
- B
- Q
InvalidPage:
type: object
properties:
result:
type: boolean
enum:
- false
errorMsg:
type: string
enum:
- INVALID_PAGE
errorCode:
type: string
enum:
- '00011'
invalidPage:
$ref: '#/components/schemas/page'
CardInfov1:
title: Card Attribute Details
type: object
properties:
sourceChannel:
$ref: '#/components/schemas/updateChannel'
lastAttrUpdateDate:
$ref: '#/components/schemas/lastAttrUpdateDate'
infoType:
type: string
description: >
Specify if caller is interested only in specific datasets. If not
specified, system will return all the data without filtering. Enum value
will display attributes as follows:
<li>PORTFOLIO - Will return RPIN enrollment details - RPIN, Account Open
Date, RPIN effective date</li>
<li>REPLACEMENT - Will return the complete replacement chain with
sequence number to indicate oldest to newest card in teh repalcement
chain</li>
<li>LINK - Will return all link relationships this card is part of.
Details of relationship will include teh link group ID, link group name,
and flag to indicate card's primary status in the relationship</li>
format: enum
example: PORTFOLIO
enum:
- PORTFOLIO
- REPLACEMENT
- LINK
LinkDetails:
title: Link group Details for queried PAN
type: array
items:
type: object
properties:
groupId:
type: string
description: Group ID for the group
example: New Fexible Pay Debit
groupType:
type: string
description: Group Type that the card is enrolled in
format: enum
example: CUSTOMER
enum:
- LOC
- USHNW
- USCROSSPROD
- CUSTOMER
pansInGrp:
type: array
description: Other PANs in the group
items:
$ref: '#/components/schemas/pan'
isPrimaryFlag:
type: string
description: Flag indicates if the card is primary in the group.
format: boolean
example: 'true'
CardAccountRangeDetails-1:
title: Issuer Level Details for the Card's Account Range
type: object
properties:
bin:
type: string
description: >-
The BIN associated to the PAN's account range. Can be 6 or 8 in
length.
example: '400003'
lbid:
$ref: '#/components/schemas/bid'
ubid:
$ref: '#/components/schemas/bid'
fundingSource:
type: string
description: UBID for the PAN's range. 8 in length.
format: enum
example: C
enum:
- C
- D
- P
issuerInitiatedALP:
type: string
description: Issuer has initiated Account level processing for the account range.
format: boolean
example: 'true'
accountRangeProductId:
$ref: '#/components/schemas/productId'
rpin:
type: string
description: >-
Registered Program Identification Number. 6 in length. RPIN has metadata
associated with it that can be retrieved by the get GetAttributes API
call.
example: '009065'
EncryptedAccountNumber-1:
title: Encrypted Personal Account Number (PAN or Card Number)
type: string
description: >
JWE<AccountNumber> - This is a URL-safe base64-encoded string that
represents the encrypted payload for AccountNumber.
The format is the JSON Web Encryption using asymmetric/symmetric key
material made available at time of onboarding.
It is a standard JWT with a single custom AccountNumber claim,
accountNumber that contains the card number/PAN.
Visa uses JSON Web Encryption (JWE) to encrypt sensitive information in
APIs. For more info, see "Encryption (JWE) Details".
format: byte
CardAccountRangeDetails:
title: Issuer Level Details for the Card's Account Range
type: object
properties:
bin:
type: string
description: >-
The BIN associated to the PAN's account range. Can be 6 or 8 in
length.
example: '400003'
lbid:
$ref: '#/components/schemas/bid'
ubid:
$ref: '#/components/schemas/bid'
fundingSource:
type: string
description: UBID for the PAN's range. 8 in length.
format: enum
example: C
enum:
- C
- D
- P
issuerInitiatedALP:
type: string
description: Issuer has initiated Account level processing for the account range.
format: boolean
example: 'true'
accountRangeProductId:
$ref: '#/components/schemas/productId'
lastAttrUpdateDate:
type: string
description: Date when last time the card attribute was updated.
example: '2022-07-14'
CardAttributesDoc-1:
title: Card Attribute Details
type: object
properties:
pan:
$ref: '#/components/schemas/pan'
portfolio:
$ref: '#/components/schemas/CardPortfolioDetails'
linkDetails:
$ref: '#/components/schemas/LinkDetails'
updateChannel:
$ref: '#/components/schemas/updateChannel'
processingDetails:
$ref: '#/components/schemas/ProcessingDetails-1'
replacementDetails:
$ref: '#/components/schemas/ReplacementDetails'
lastUpdateTimestamp:
$ref: '#/components/schemas/dateTime'
vdpExternalAppId:
type: string
description: internal_unique_id_per_enviroment GUID.
example: 0047890ABN
updateChannel:
type: string
description: Channel from which update was done.
format: enum
example: API
enum:
- API
- CMF
- AUTOREG
pan:
title: PAN / Account Number / Card Number
maxLength: 19
minLength: 13
type: integer
description: PAN / Account Number / Card Number of the card to be enrolled
BasePage:
title: Pagination API Response
type: object
properties:
last:
title: Is this the last page?
type: boolean
empty:
title: Is this an empty page?
type: boolean
first:
title: Is this the first page?
type: boolean
number:
title: Page Number
minimum: 1
type: integer
totalCount:
title: Total number of results across all pages
type: integer
totalPages:
title: Total number of pages across
type: integer
resultsCount:
title: Number of results in this page
type: integer
bidName:
type: string
description: The Issuer Name associated to the PAN's account range.
example: Test Bank
CardAttributesPortProcDoc:
title: Card Attribute Details
type: object
properties:
CardInfo:
$ref: '#/components/schemas/CardInfov1'
RPINInfo:
$ref: '#/components/schemas/RPINInfov1'
panlast4:
$ref: '#/components/schemas/panlast4'
InvalidSize:
type: object
properties:
result:
type: boolean
enum:
- false
errorMsg:
type: string
enum:
- INVALID_SIZE
errorCode:
type: string
enum:
- '00012'
invalidSize:
$ref: '#/components/schemas/size'
InvalidInfoType:
type: object
properties:
result:
type: boolean
enum:
- false
errorMsg:
type: string
enum:
- INVALID_INFO_TYPE
errorCode:
type: string
enum:
- '9.0'
invalidInfoType:
$ref: '#/components/schemas/infoType'
productId:
type: string
description: Product ID
example: A
ServerError:
type: object
properties:
result:
type: boolean
enum:
- false
errorMsg:
type: string
enum:
- SERVER_ERROR
errorCode:
type: string
enum:
- '00013'
serverError:
type: string
default: Server Error
PaymentAccountReference:
title: PAR / Payment Account Reference
maxLength: 29
minLength: 29
type: string
description: >
A Payment Account Reference (PAR) is a unique reference value associated
with a specific card holder PAN. It identifies the card account, not
just a card.
PAR is a non-payment identifier that can be associated to PANs and
tokens, as defined by EMVCo. PAR allows all participants in the
payments chain to have a single, non-sensitive value assigned to a
consumer. This value can be used in place of sensitive card holder
identification fields, and transmitted across the payments ecosystem to
facilitate card holder identification.
PAR has a well-defined format (as per the Jan 2016 EMVCo documentation):
- Fixed length of 29 characters
- All Uppercase, Roman, & Alphanumeric values
- 4-character BIN Controller ID assigned by EMVCo followed by a