Skip to content

Commit

Permalink
Merge branch 'master' into v2.3.1-docs-update
Browse files Browse the repository at this point in the history
  • Loading branch information
thejspr committed Sep 18, 2024
2 parents e989e7d + dd25548 commit 42f9d3f
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 10 deletions.
14 changes: 12 additions & 2 deletions source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,20 @@ be found in the revision history.

Pull requests and issues are welcome.

May 23th, 2024
TBD, 2024
*************

#. Added documentation for the ``v2.3.1.1`` specification.
#. Added documentation for the ``v2.3.1`` specification.

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.
>>>>>>> master

November 11th, 2020
*******************
Expand Down
56 changes: 48 additions & 8 deletions source/preauth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,54 @@ something like:
:caption: /preauth 2.2.0 example response
:linenos:
{
"acsStartProtocolVersion": "2.1.0",
"acsEndProtocolVersion": "2.2.0",
"dsStartProtocolVersion": "2.1.0",
"dsEndProtocolVersion": "2.2.0",
"threeDSServerTransID": "d461f105-1792-407f-95ff-9a496fd918a9",
"threeDSMethodURL": "https://acs.tld/3dsmethod"
}
{
"acsStartProtocolVersion": "2.1.0",
"acsEndProtocolVersion": "2.2.0",
"dsStartProtocolVersion": "2.1.0",
"dsEndProtocolVersion": "2.2.0",
"dsProtocolVersions": [
"2.1.0",
"2.2.0"
],
"acsProtocolVersions": [
{
"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"
}
If ``maxMessageVersion`` is ``2.3.1``, the response will look like this:

Expand Down

0 comments on commit 42f9d3f

Please sign in to comment.