Select bank account for BankID authentication

Choose which of your bank accounts to associate with your BankID authentication. It returns a unique ID required for subsequent operations, such as making Stripe payments or reviewing registry locks.

Headers

Accept Example
Content-Type Example

Body

required
application/json
clientId string required
pnr string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/bankid/select-account
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/bankid/select-account" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "clientId": "string",
    "pnr": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string"
  }
}
Request Body
{
  "clientId": "string",
  "pnr": "string"
}