Creating Transactions
Transactions
Creating Transactions
$ coiin transactionType create "quickstart"
{
"status": 200,
"response": {
"success": true
"ok": true
}$ coiin transaction create "quickstart" "hello"
Could not parse JSON for payload, sending raw data instead...
{
"status": 201,
"response": {
"transaction_id": "0296540b-eb8e-429e-addb-f36d6ac08244"
},
"ok": true
}
$ coiin transaction create "quickstart" '{"hello":"world"}'
{
"status": 201,
"response": {
"transaction_id": "0f9a75c6-c8db-4c95-9bca-8194211a8e52"
},
"ok": true
}Last updated