Skip to content

API OPS: getgemusers

OPS: Get GEM Users

This call will list all GemUsers the showrunner server manages for the show specified.

Endpoint: /api/v1/ops/getgemusers

Verb: GET

Payload:

Type Attribute Required Description
number show_id Yes Unique ID for corresponding show

Example Empty List Response:

{
    "users": null,
    "api_code": 0,
    "error": null
}
** Note: Null is displayed with an empty list

Example Response:

{
    "users": [
        {
            "id": 2,
            "scan_id": "U_QR-06076b80",
            "handle": "Ruth",
            "groupnum": 5303956802594650406,
            "appname": "LittlePrince",
            "onboard_area_id": 2,
            "progress_state": 2,
            "gem_group_id": 1,
            "avatar": 39,
            "language": 3,
            "height": 162,
            "adhoc": false,
            "guxtxt1": "",
            "guxtxt2": "",
            "guxint1": 0,
            "guxint2": 0
        },
        {
            "id": 3,
            "scan_id": "U_QR-9f6ff778",
            "handle": "Diane",
            "groupnum": "s8d7s6s4g7f55d85",
            "appname": "LittlePrince",
            "onboard_area_id": 2,
            "progress_state": 2,
            "gem_group_id": 1,
            "avatar": 18,
            "language": "en-US",
            "height": 100,
            "adhoc": false,
            "guxtxt1": "",
            "guxtxt2": "",
            "guxint1": 0,
            "guxint2": 0
        }
    ],
    "api_code": 0,
    "error": null
}