Skip to content

Commit 836b4ca

Browse files
committed
numbered list
1 parent 77fd2e9 commit 836b4ca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/api-center/import-api-management-apis.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ To allow import of APIs, assign your API center's managed identity the **API Man
158158
apicObjID=$(az identity show --name <identity-name> --resource-group <resource-group-name> --query "principalId" --output tsv)
159159
```
160160
1. Get the resource ID of your API Management instance using the [az apim show](/cli/azure/apim#az-apim-show) command.
161-
1.
161+
162162
```azurecli
163163
#! /bin/bash
164164
apimID=$(az apim show --name <apim-name> --resource-group <resource-group-name> --query "id" --output tsv)
@@ -259,12 +259,14 @@ Specify an API to import using its name from the API Management instance.
259259
```azurecli
260260
#! /bin/bash
261261
apiIDs="$apimID/apis/<api-name>"
262+
262263
az apic service import-from-apim --service-name <api-center-name> --resource-group <resource-group-name> --source-resource-ids $apiIDs
263264
```
264265
265266
```azurecli
266267
# PowerShell syntax
267268
$apiIDs=$apimID + "/apis/<api-name>"
269+
268270
az apic service import-from-apim --service-name <api-center-name> --resource-group <resource-group-name> --source-resource-ids $apiIDs
269271
```
270272

0 commit comments

Comments
 (0)