DiscoverText API - Global Codeset Data

GET
https://api.discovertext.com/api/v1/codesets/{codesetId}/data
Return Value: A collection of coded data for a global codeset. Includes the text and code properties used.
{
    meta: {
        count: (item count),
        offset: (current offset),
        limit: (current limit)
    },
    items: [
        {
            "text": "{coded text}",
            "code": {
                "id": {global_code_id},
                "name": "{code name}",
                "color": {HTML code color, optional}
            }
        },
        ...
    ],
    links: [ { paging links } ]
}