POST
/
wallets
curl --request POST \
  --url https://api.live.paisr.tech/{version}/wallets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "Acme Cash",
  "icon": "vault"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
The details required to create a wallet.

The body is of type object.

Response

200
application/json
Successfully created wallet.

The response is of type object.