POST
/
wallets
/
{wallet_id}
/
links
curl --request POST \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/links \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "balance_id": "<string>",
  "description": "<string>",
  "amount": 123
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

wallet_id
string
required

The Wallet ID.

Body

application/json
The details required to create a payment link.
balance_id
string
required

ID of the wallet balance to transfer funds.

description
string
required

Detailed description about the payment link.

amount
number
required

Amount to transfer.

Response

200
application/json
Successfully created payment link.
success
boolean
default:true

Indicates if the request was successful.

data
object