Skip to content

Commit bd03ad8

Browse files
committed
link articles
1 parent 4fae9f1 commit bd03ad8

10 files changed

+20
-0
lines changed

articles/iot-central/core/howto-configure-file-uploads.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ ms.service: iot-central
1414

1515
IoT Central lets you upload media and other files from connected devices to cloud storage. You configure the file upload capability in your IoT Central application, and then implement file uploads in your device code.
1616

17+
To learn how to upload files by using the IoT Central REST API, see [How to use the IoT Central REST API to upload a file.](../core/howto-upload-file-rest-api.md)
18+
1719
## Prerequisites
1820

1921
You must be an administrator in your IoT Central application to configure file uploads.

articles/iot-central/core/howto-create-organizations.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ The following screenshot shows an organization hierarchy definition in IoT Centr
3333

3434
:::image type="content" source="media/howto-create-organization/organizations-definition.png" alt-text="Screenshot of organizations hierarchy definition." lightbox="media/howto-create-organization/organizations-definition.png":::
3535

36+
To learn how to manage organizations by using the IoT Central REST API, see [How to use the IoT Central REST API to manage organizations.](../core/howto-manage-organizations-with-rest-api.md)
37+
3638
## Create a hierarchy
3739

3840
To start using organizations, you need to define your organization hierarchy. Each organization in the hierarchy acts as a logical container where you place devices, save dashboards and device groups, and invite users. To create your organizations, go to the **Permissions** section in your IoT Central application, select the **Organizations** tab, and select either **+ New** or use the context menu for an existing organization. To create one or many organizations at a time, select **+ Add another organization**:

articles/iot-central/core/howto-manage-devices-in-bulk.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ ms.topic: how-to
1313

1414
You can use Azure IoT Central to manage your connected devices at scale through jobs. Jobs let you do bulk updates to device and cloud properties and run commands. You can also use CSV files to import and export devices in bulk. This article shows you how to get started with using jobs in your own application and how to use the import and export features.
1515

16+
To learn how to manage jobs by using the IoT Central REST API, see [How to use the IoT Central REST API to manage devices.](../core/howto-manage-jobs-with-rest-api.md)
17+
1618
## Create and run a job
1719

1820
The following example shows you how to create and run a job to set the light threshold for a group of devices. You use the job wizard to create and run jobs. You can save a job to run later.

articles/iot-central/core/howto-manage-devices-individually.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ This article describes how you manage devices in your Azure IoT Central applicat
2222

2323
To learn how to manage custom groups of devices, see [Tutorial: Use device groups to analyze device telemetry](tutorial-use-device-groups.md).
2424

25+
To learn how to manage devices by using the IoT Central REST API, see [How to use the IoT Central REST API to manage devices.](../core/howto-manage-devices-with-rest-api.md)
26+
2527
## View your devices
2628

2729
To view an individual device:

articles/iot-central/core/howto-manage-devices-with-rest-api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ For the reference documentation for the IoT Central REST API, see [Azure IoT Cen
2020

2121
[!INCLUDE [iot-central-postman-collection](../../../includes/iot-central-postman-collection.md)]
2222

23+
To learn how to manage devices by using the IoT Central UI, see [Manage individual devices in your Azure IoT Central application.](../core/howto-manage-devices-individually.md)
24+
2325
## Devices REST API
2426

2527
The IoT Central REST API lets you:

articles/iot-central/core/howto-manage-jobs-with-rest-api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ To learn how to create and manage jobs in the UI, see [Manage devices in bulk in
3131

3232
[!INCLUDE [iot-central-postman-collection](../../../includes/iot-central-postman-collection.md)]
3333

34+
To learn how to manage jobs by using the IoT Central UI, see [Manage devices in bulk in your Azure IoT Central application.](../core/howto-manage-devices-in-bulk.md)
35+
3436
## Job payloads
3537

3638
Many of the APIs described in this article include a definition that looks like the following JSON snippet:

articles/iot-central/core/howto-manage-organizations-with-rest-api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ To learn more about organizations in IoT Central Application, see [Manage IoT Ce
2222

2323
[!INCLUDE [iot-central-postman-collection](../../../includes/iot-central-postman-collection.md)]
2424

25+
To learn how to manage organizations by using the IoT Central UI, see [Manage IoT Central organizations.](../core/howto-create-organizations.md)
26+
2527
## Organizations REST API
2628

2729
The IoT Central REST API lets you:

articles/iot-central/core/howto-manage-users-roles-with-rest-api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ For the reference documentation for the IoT Central REST API, see [Azure IoT Cen
2020

2121
[!INCLUDE [iot-central-postman-collection](../../../includes/iot-central-postman-collection.md)]
2222

23+
To learn how to manage users and roles by using the IoT Central UI, see [Manage users and roles in your IoT Central application.](../core/howto-manage-users-roles-with-rest-api.md)
24+
2325
## Manage roles
2426

2527
The REST API lets you list the roles defined in your IoT Central application. Use the following request to retrieve a list of role IDs from your application:

articles/iot-central/core/howto-manage-users-roles.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ This article describes how you can add, edit, and delete users in your Azure IoT
1717

1818
To access and use the **Permissions** section, you must be in the **App Administrator** role for an Azure IoT Central application or in a custom role that includes administration permissions. If you create an Azure IoT Central application, you're automatically added to the **App Administrator** role for that application.
1919

20+
To learn how to manage users and roles by using the IoT Central REST API, see [How to use the IoT Central REST API to manage users and roles.](../core/howto-manage-users-roles-with-rest-api.md)
21+
2022
## Add users
2123

2224
Every user must have a user account before they can sign in and access an application. IoT Central currently supports Microsoft user accounts, Azure Active Directory accounts, and Azure Active Directory service principals. IoT Central doesn't currently support Azure Active Directory groups. To learn more, see [Microsoft account help](https://support.microsoft.com/products/microsoft-account?category=manage-account) and [Quickstart: Add new users to Azure Active Directory](../../active-directory/fundamentals/add-users-azure-active-directory.md).

articles/iot-central/core/howto-upload-file-rest-api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ For the reference documentation for the IoT Central REST API, see [Azure IoT Cen
3030

3131
[!INCLUDE [iot-central-postman-collection](../../../includes/iot-central-postman-collection.md)]
3232

33+
To learn how to uploaf files by using the IoT Central REST API, see [How to configure file uploads.](../core/howto-configure-file-uploads.md)
34+
3335
## Prerequisites
3436

3537
To test the file upload, install the following prerequisites in your local development environment:

0 commit comments

Comments
 (0)