Skip to main content
POST
/
api
/
platform
/
accounts
/
open-pw-bank-account
/
{user_id}
Open Paywint Bank Account
curl --request POST \
  --url https://api.sandbox.paywint.com/api/platform/accounts/open-pw-bank-account/{user_id} \
  --header 'Content-Type: application/json' \
  --header 'X-Platform-ID: <x-platform-id>' \
  --header 'X-Signature: <x-signature>' \
  --data '{
  "bank_nick_name": "<string>"
}'
{
  "success": true,
  "message": "Operation completed.",
  "data": {
    "bank_nick_name": "Personal Checking",
    "status": "initiated",
    "id": "a1b2c3d4-****-****-****-9z8y7x6w5v4u",
    "pw_bank_id": "f47ac10b-****-****-****-0e02b2c3d479",
    "created_at": "2025-08-07T14:32:00Z"
  },
  "queryGeneratedTime": 1718006400
}

Headers

X-Platform-ID
string<uuid>
required

Unique platform identifier (UUID). You receive this during onboarding. Must be sent with every API request.

X-Signature
string
required

HMAC-SHA256 request signature for authentication. Use your platform secret key to compute it as: METHOD + PATH + QUERY + BODY_HASH.

Path Parameters

user_id
string<uuid>
required

Unique identifier (UUID) of the user

Body

application/json
bank_nick_name
string
required

Unique nickname to easily identify the bank account.

Response

Successful Response

success
boolean
default:true

Indicates whether the request was processed successfully.

Example:

true

message
string
default:Success

A short, human-readable message describing the result of the request.

Example:

"Operation completed."

data
object | null

The main response payload, if applicable

queryGeneratedTime
number | null
default:1759844954.846287

The Unix timestamp (in seconds) indicating when the response was generated.

Example:

1718006400

I