[Yandex Cloud documentation](../../index.md) > [Yandex IoT Core](../index.md) > [Step-by-step guides](index.md) > Viewing operations with service resources

# Viewing operations with Yandex IoT Core resources

{% note warning %}

Yandex IoT Core is no longer available to new users. 

Current users can create resources until November 1, 2026. Afterwards, the service will go read-only and cease to operate on December 1, 2026. For more information on the timing and procedure, see [Service shutdown](../sunset.md).

{% endnote %}

The system logs all actions with Yandex IoT Core resources as a list of operations. Each operation gets an ID.

## Getting a list of operations {#get-operations}

{% list tabs group=instructions %}

- Management console {#console}

  You can get a list of operations for a specific resource. The steps below describe how you can do this for a registry. The same steps apply to other resources.

  1. In the [management console](https://console.yandex.cloud), open the folder the registry is in.
  1. Navigate to **IoT Core**.
  1. In the left-hand panel, select ![image](../../_assets/console-icons/server.svg) **Registries**.
  1. Select the registry.
  1. Go to the ![image](../../_assets/console-icons/list-check.svg) **Operations** panel for the selected registry.

     You will see a list of operations with the selected registry.

- API {#api}

  Use the `listOperations` REST API method for the relevant resource or the `<service>/ListOperations` gRPC API call.

  For example, for a registry, use either the [listOperations](../api-ref/Registry/listOperations.md) REST API method for the [Registry](../api-ref/Registry/index.md) resource or the [RegistryService/ListOperations](../api-ref/grpc/Registry/listOperations.md) gRPC API call.

{% endlist %}

## Getting operation details {#get-operations-info}

1. [Get the list of operations](#get-operations) for the resource.
1. Copy the operation ID.
1. Get the operation details:

    {% list tabs group=instructions %}

    - CLI {#cli}

      If you do not have the Yandex Cloud CLI yet, [install and initialize it](../../cli/quickstart.md#install).

      The folder used by default is the one specified when [creating](../../cli/operations/profile/profile-create.md) the CLI profile. To change the default folder, use the `yc config set folder-id <folder_ID>` command. You can also specify a different folder for any command using `--folder-name` or `--folder-id`. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

      Run this command:

      ```bash
      yc operation get <operation_ID>
      ```

      Result:

      ```text
      id: areojeqlg1bh********
      description: Create device registry
      created_at: "2024-06-19T06:23:13.216Z"
      created_by: aje9k8luj4qf********
      modified_at: "2024-06-19T06:23:13.265Z"
      done: true
      metadata:
        '@type': type.googleapis.com/yandex.cloud.iot.devices.v1.CreateRegistryMetadata
        registry_id: aresm2hpmh4s********
      response:
        '@type': type.googleapis.com/yandex.cloud.iot.devices.v1.Registry
        id: aresm2hpmh4s********
        folder_id: b1g681qpemb4********
        created_at: "2024-06-19T06:23:13.245974425Z"
        name: my-registry
        status: ACTIVE
        log_options:
          folder_id: b1g681qpemb4********
      ```

    - API {#api}

      Use the [OperationService/Get](../api-ref/grpc/Operation/get.md) gRPC API call.

    {% endlist %}

#### Useful links {#see-also}

* [Working with operations](../../api-design-guide/concepts/about-async.md)