Get account details
GEThttps://psd2.eika.no/api/v1/accounts/:id
The account details will include the booking balance if the withBalance
query parameter is set to true.
The call will be rejected if withBalance
is used in a case where the access right on balances is not granted.
See XS2A Framework Implementation Guidelines, Section 6.6.2 for additional details.
Request
Responses
- 200
- 400
- 401
- 404
- 500
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://psd2.eika.no/api/v1/accounts/:id");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());