Skip to main content
GET
/
api
/
v1
/
panel-configurations
/
{panelConfigurationId}
GetPanelConfiguration
curl --request GET \
  --url https://your-sift-api-url.com/api/v1/panel-configurations/{panelConfigurationId} \
  --header 'Authorization: Bearer <token>'
{
  "panelConfiguration": {
    "panelConfigurationId": "<string>",
    "versionId": "<string>",
    "version": 123,
    "changeMessage": "<string>",
    "name": "<string>",
    "panelType": "PANEL_TYPE_UNSPECIFIED",
    "channelConfigurations": [
      {
        "name": "<string>",
        "type": "PLOTTED_CHANNEL_TYPE_UNSPECIFIED",
        "color": "<string>",
        "channelSettings": {},
        "bitFieldIndex": 123,
        "bitFieldElement": {
          "name": "<string>",
          "index": 123,
          "bitCount": 123
        },
        "expression": "<string>",
        "expressionChannelReferences": [
          "<string>"
        ]
      }
    ],
    "chartSettings": {},
    "createdDate": "2023-11-07T05:31:56Z",
    "modifiedDate": "2023-11-07T05:31:56Z",
    "archivedDate": "2023-11-07T05:31:56Z",
    "createdByUserId": "<string>",
    "modifiedByUserId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

panelConfigurationId
string
required

Response

A successful response.

panelConfiguration
object