Create or update custom subname data
PUT /v1/subname/data
This allows creating user defined data object to be created and stored for the provided subname.
In order to set a data record, send a request to /subname/data/{label}/{domain}/{key}
:
label
subnamedomain
second-level domain namekey
data record key
The following data payload is required to set the data object:
{ "data": data_object_to_be_stored }
If the object under the specified key
already exists, the object will be updated. Otherwise, a new object for the key
gets created.
Last updated