API Docs 0 Help

Transactions

Transaction creationWalletWallet HubSIWFTRequests a transactionSends the necessary data to SIWFTProcesses the transaction and responds with useful dataPasses on that the transaction was successful or not.WalletWallet HubSIWFTTransaction creation
POST method/v0/transaction/{sender}/{receiver}

Create a transaction between two parties

Request parameters

{ "amount": 13.37, "description": "Hello World", "otp": 123456 }

Responses

{ "success": true, "message": { "id": "transaction_34210bja3421834jah6jhh3h67hd34j57bh24301", "sender": "AT10000000123456789012", "receiver": "AT10000000098765432112", "amount": "13.37", "description": Hello World, "created": "2024-01-12T11:32:40.579Z" } }
GET method/v0/transaction/

Get a list of all your Transactions you made

Request parameters

Responses

{ "success": true, "message": [ { "id": "transaction_114e5793868a8480411c73e3d45b6cd7cee8c012", "from": "AT10000000098765432112", "to": "AT10000000123456789012", "amount": "13.37", "message": "Hello World #1", "date": "2024-01-08T12:09:19.273Z", "holdBack": false }, { "id": "transaction_a33e801d40225b99f34f988404f06259b3f98b82", "from": "AT10000000123456789012", "to": "AT10000000098765432112", "amount": "13.37", "message": "Hello World #2", "date": "2024-01-08T12:11:05.486Z", "holdBack": true } ] }
GET method/v0/transaction/{transactionId}

Request parameters

Responses

{ "success": true, "message": { "id": "transaction_114e5793868a8480411c73e3d45b6cd7cee8c012", "from": "AT10000000098765432112", "to": "AT10000000123456789012", "amount": "13.37", "message": "Hello World #1", "date": "2024-01-08T12:09:19.273Z", "holdBack": false } }
Last modified: 11 June 2024