Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update preauth response documentation #34

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ Select changes are added here.

Pull requests and issues are welcome.

September 17th, 2024
*********************
Updated preauth response to include two new fields:
- ``acsProtocolVersions``: Array of objects containing the list of Protocol versions supported by the ACS for the card range,
with their associated ACS information indicator, the 3DS method URL, and the list of supported message extensions.
- ``dsProtocolVersions``: Contains the list of active protocol versions supported by the DS.

November 11th, 2020
*******************

Expand Down
40 changes: 40 additions & 0 deletions source/preauth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,46 @@ something like:
"acsEndProtocolVersion": "2.2.0",
"dsStartProtocolVersion": "2.1.0",
"dsEndProtocolVersion": "2.2.0",
"dsProtocolVersions": [
"2.1.0",
"2.2.0"
],
"acsProtocolVersions": [
Lassejoe marked this conversation as resolved.
Show resolved Hide resolved
{
"acsInfoInd": [
"01",
"02",
"84",
"85",
"86",
"87",
"88",
"89",
"92",
"93",
"94"
],
"threeDSMethodURL": "https://acs.tld/3dsmethod",
"version": "2.1.0"
},
{
"acsInfoInd": [
"01",
"02",
"84",
"85",
"86",
"87",
"88",
"89",
"92",
"93",
"94"
],
"threeDSMethodURL": "https://acs.tld/3dsmethod",
"version": "2.2.0"
}
],
"threeDSServerTransID": "d461f105-1792-407f-95ff-9a496fd918a9",
"threeDSMethodURL": "https://acs.tld/3dsmethod"
}
Expand Down
Loading