get Registry

Get a registry

GEThttps://api.korewireless.com/omnicore/subscriptions/{subscriptionId}/registries/{registryId}
Path parameters
subscriptionId*string

Subscription ID

registryId*string

Registry ID

Response

OK

Body
id*string
namestring
parentstring
createdOnstring
updatedOnstring
credentialsarray of RegistryCredential (object)
httpConfigHttpConfig (object)
mqttConfigMqttConfig (object)
logLevelLogLevel (enum)
INFOERROR
isNatsRouteboolean
eventNotificationConfigsarray of EventNotificationConfig (object)
logNotificationConfigNotificationConfig (object)
stateNotificationConfigNotificationConfig (object)
customOnboardNotificationConfigNotificationConfig (object)
customOnboardEnabledboolean
numberOfDevicesinteger
numberOfGatewaysinteger
Request
const response = await fetch('https://api.korewireless.com/omnicore/subscriptions/{subscriptionId}/registries/{registryId}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "id": "text",
  "name": "text",
  "parent": "text",
  "createdOn": "text",
  "updatedOn": "text",
  "credentials": [
    {
      "publicKeyCertificate": {
        "certificate": "text",
        "format": "X509_CERTIFICATE_PEM",
        "x509Details": {
          "expiryTime": "text",
          "issuer": "text",
          "publicKeyType": "text",
          "signatureAlgorithm": "text",
          "startTime": "text",
          "subject": "text"
        }
      },
      "id": "text"
    }
  ],
  "httpConfig": {
    "httpEnabledState": "HTTP_ENABLED"
  },
  "mqttConfig": {
    "mqttEnabledState": "MQTT_ENABLED"
  },
  "logLevel": "INFO",
  "isNatsRoute": false,
  "eventNotificationConfigs": [
    {
      "pubsubTopicName": "text",
      "subfolderMatches": "text"
    }
  ],
  "logNotificationConfig": {
    "pubsubTopicName": "text"
  },
  "stateNotificationConfig": {
    "pubsubTopicName": "text"
  },
  "customOnboardNotificationConfig": {
    "pubsubTopicName": "text"
  },
  "customOnboardEnabled": false
}

Authorization: apiKey

name: x-api-key
in: header
type: apiKey
curl -L -X GET 'https://api.korewireless.com/omnicore/subscriptions/:subscriptionId/registries/:registryId' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-H 'x-api-key: <API_KEY_VALUE>'

Last updated