Skip to main content
POST
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
payins
Create Payin
curl --request POST \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/payins \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": "<string>",
  "currency": "<string>",
  "payment_method": "<string>",
  "description": "<string>"
}
'
This endpoint is currently under development.

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)

Request Body

amount
string
required
The payment amount (decimal string)
currency
string
required
ISO 4217 currency code (e.g., USD, EUR, GBP)
payment_method
string
required
Payment method (e.g., bank_transfer, card, crypto, virtual_account)
description
string
Optional payment description

Response

Expected response structure:
{
  "id": "pin_1234567890abcdef",
  "object": "payin",
  "account_id": "acc_1234567890abcdef",
  "amount": "1000.00",
  "currency": "USD",
  "status": "pending",
  "created": "2024-01-01T00:00:00Z"
}