Start payment authorisation process
POSThttps://psd2.eika.no/api/v1/payments/:product/:paymentId/authorisations
See the developer documentation for a detailed description on the flow.
Request
Responses
- 201
- 400
- 401
- 404
- 500
CREATED
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.Post, "https://psd2.eika.no/api/v1/payments/:product/:paymentId/authorisations");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());