getRecordInfos

This method returns a list of records, selected by their id.

Parameters

Name

Type

Required

Description

cortexToken

string

yes

A token returned by authorize.

recordIds

array of strings

yes

A list of records id.

Result

The result is an array of record objects, including the markers of each record.

Examples

{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "getRecordInfos",
    "params": {
        "cortexToken": "xxx",
        "recordIds": ["db01c15e-d916-4a7b-9f1d-16295fd1c643"]
    }
}

Last updated