updateRecord

This method is to update a record. You can update its title, description and its tags.

Your application cannot update a record that was created by another application.

Parameters

Result

The result is a record object.

Examples

Update the tags and the description.

{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "updateRecord",
    "params": {
        "cortexToken": "xxx",
        "record": "d8fe7658-71f1-4cd6-bb5d-f6775b03438f",
        "description": "My best record ever.",
        "tags": ["best", "snow", "direwolf"]
    }
}

Last updated