You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Used by Applications to find out what versions of the SimpleFIN Protocol the server supports. The strings returned must be in `MAJOR.MINOR.FIX` or `MAJOR.MINOR` format.
571
571
572
-
Note: as this specification is still in draft, most servers will report `1.0` but may not yet support all things from the draft specification.
572
+
Note: as this specification is still in draft, most servers will report `1` but may not yet support all things from the draft specification.
573
573
574
574
### HTTP Request
575
575
@@ -595,7 +595,7 @@ Response:
595
595
596
596
~~~{.json}
597
597
{
598
-
"versions": ["1.0"],
598
+
"versions": ["1","2"],
599
599
}
600
600
~~~
601
601
</div>
@@ -718,6 +718,7 @@ Retrieve account and transaction data.
718
718
| pending | optional | If `pending=1` is provided, pending transactions will be included (if supported). By default, pending transaction are **NOT** included. |
719
719
| account | optional | If given, only return information related to the given account id. May be specified multiple times. |
720
720
| balances-only | optional | If `balances-only=1` is provided, no transaction data is returned. |
721
+
| version | optional | Must be `2` for this version of the protocol. Can be `1` for earlier versions. The server chooses the default version if this is not specified. |
0 commit comments