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
Copy file name to clipboardExpand all lines: README.md
+15-6
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,19 @@
4
4
5
5
# NordigenApiClient
6
6
7
-
This library provides a .NET client for the [GoCardless Bank Account Data API](https://gocardless.com/bank-account-data/) (formerly Nordigen API). The following API endpoints are supported:
7
+
This library provides a .NET client for
8
+
the [GoCardless Bank Account Data API](https://gocardless.com/bank-account-data/) (formerly Nordigen API). The following
9
+
API endpoints are supported:
8
10
9
11
- Token
10
12
- Institutions
11
13
- Agreements
12
14
- Requisitions
13
15
- Accounts
14
16
15
-
You can get started with the Quickstart Guide below or take a look at the [full documentation](https://robintty.github.io/NordigenApiClient/). You can find the nuget package [here](https://www.nuget.org/packages/RobinTTY.NordigenApiClient).
17
+
You can get started with the Quickstart Guide below or take a look at
18
+
the [full documentation](https://robintty.github.io/NordigenApiClient/). You can find the nuget
@@ -61,11 +65,13 @@ You can get started with the Quickstart Guide below or take a look at the [full
61
65
Console.WriteLine($"Requisition couldn't be created: {requisitionResponse.Error.Summary}");
62
66
```
63
67
64
-
5. You will now need to accept the end user agreement by following the authentication link you got in the last step. The authentication flow will roughly look like this:
68
+
5. You will now need to accept the end user agreement by following the authentication link you got in the last step. The
6. Now that you have accepted the agreement we once again need to retrieve the requisition we created in step 4. This time the response will include the accounts you are now able to access.
73
+
6. Now that you have accepted the agreement we once again need to retrieve the requisition we created in step 4. This
74
+
time the response will include the accounts you are now able to access.
69
75
70
76
```cs
71
77
varrequisitionId="your-requisition-id";
@@ -79,7 +85,8 @@ You can get started with the Quickstart Guide below or take a look at the [full
79
85
Console.WriteLine($"Accounts couldn't be retrieved: {accountsResponse.Error.Summary}");
80
86
```
81
87
82
-
7. Now you can retrieve details about your bank account and the balances/transactions using the account ID(s) we just acquired:
88
+
7. Now you can retrieve details about your bank account and the balances/transactions using the account ID(s) we just
89
+
acquired:
83
90
84
91
```cs
85
92
varaccountId="your-account-id";
@@ -110,4 +117,6 @@ You can get started with the Quickstart Guide below or take a look at the [full
110
117
});
111
118
```
112
119
113
-
That's it! You are now able to retrieve the account details, balances and transactions of your bank account. If you wanna learn more about this library please refer to the [full documentation](https://robintty.github.io/NordigenApiClient/).
120
+
That's it! You are now able to retrieve the account details, balances and transactions of your bank account. If you
121
+
wanna learn more about this library please refer to
122
+
the [full documentation](https://robintty.github.io/NordigenApiClient/).
Copy file name to clipboardExpand all lines: src/RobinTTY.NordigenApiClient.Tests/LiveApi/Endpoints/AccountsEndpointTests.cs
+3-2
Original file line number
Diff line number
Diff line change
@@ -210,7 +210,8 @@ public async Task GetTransactionRangeInFuture()
210
210
}
211
211
212
212
/// <summary>
213
-
/// Tests the retrieval of transactions within a specific time frame where the date range is incorrect, since the endDate is before the startDate. This should throw an exception.
213
+
/// Tests the retrieval of transactions within a specific time frame where the date range is incorrect, since the
214
+
/// endDate is before the startDate. This should throw an exception.
Copy file name to clipboardExpand all lines: src/RobinTTY.NordigenApiClient.Tests/Mocks/Endpoints/AccountsEndpointTests.cs
+3-2
Original file line number
Diff line number
Diff line change
@@ -234,7 +234,8 @@ public async Task GetTransactionRangeInFuture()
234
234
}
235
235
236
236
/// <summary>
237
-
/// Tests the retrieval of transactions within a specific time frame where the date range is incorrect, since the endDate is before the startDate. This should throw an exception.
237
+
/// Tests the retrieval of transactions within a specific time frame where the date range is incorrect, since the
238
+
/// endDate is before the startDate. This should throw an exception.
Copy file name to clipboardExpand all lines: src/RobinTTY.NordigenApiClient.Tests/Serialization/TransactionTests.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -90,4 +90,4 @@ public async Task DeserializeWithException()
90
90
"The following JSON content caused the problem: { \"transactionId\": \"AB123456789\", \"entryReference\": \"123456789\", \"bookingDate\": \"2023-03-20\", \"bookingDateTime\":"));
0 commit comments