Meta-data

The method allows you to set the meta-data for the address. The field type is free, you can set any value

Examples of the request body:

{
  "id": "...",
  "meta": 199
}
{
  "id": "...",
  "meta": [1,2,3,4]
}
{
  "id": "...",
  "meta": "some str"
}
{
  "id": "...",
  "meta": ["one", "two"]
}
{
  "id": "...",
  "meta": {
    "arr": ["1","2"],
    " some": "field"
  }
}
{
  "id": "...",
  "meta": null
}

Last updated