Post
Upload Data to the Blockchain
Post Messages to the Blockchain.
Headers
Name
Type
Description
Request Body
Name
Type
Description
Last updated
const dataArray = [
{
"notes": [
"note-1",
"note-2"
]
}
]{
statusCode: 200,
data: {
status: 'success',
msg: 'Data uploaded Successfully',
txid: 'string'
}
}var parameters = {
serviceID: 'optional',
walletID: 'optional',
body: {
notes: ["text1", "text2", "text3"]
}
}
const response = await relysia.post(parameters);