Operations

Save data to selected blockchain.

Saves a string to the blockchain network

POST https://api.bws.ninja/v1/call

Use this operation to save data to the blockchain.

Request Body

Name
Type
Description

solution*

string

BWS.Blockchain.Save

version*

number

1

network*

string

operation*

string

save

parameters*

JSON

Method Parameters

Parameter
Type
Max. Size
Desciption

value

string

(check network)

The value to save to blockchain.

Curl Example

This operation is asynchronous. Once executed, check the results using fetch API and the providedjobId.

curl --location 'https://api.bws.ninja/v1/call' \
--header 'X-Api-Key: API-KEY' \
--header 'Content-Type: application/json' \
--data '{
    "solution": "BWS.Blockchain.Save",
    "version": 1,
    "network": "mumbai",
    "operation": "save",
    "parameters": { 
        "value": "Hello World!"
    }
}'

Last updated