Skip to content

Commit 544a43d

Browse files
committed
type edit on cli md
1 parent dc88d31 commit 544a43d

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

docs/cli/cli-destinations.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: CLI for Destinations API Tutorial
33
---
44

55
## Introduction
6-
The `planet destinations` command enables interaction with the [Destinations API](https://docs.planet.com/develop/apis/destinations/), that enables the creation, listing, and modifying of destinations as well as using the destination in other services to streamline data delivery. This tutorial takes you through the main command available in the CLI.
6+
The `planet destinations` command enables interaction with the [Destinations API](https://docs.planet.com/develop/apis/destinations/), which enables the creation, listing, and modifying of destinations as well as using destinations in other services to streamline data delivery. This tutorial takes you through the main commands available in the CLI.
77

88
## Core Workflows
99

@@ -34,8 +34,6 @@ For example, to list destinations that are not archived and you can modify you w
3434
planet destinations list --not-archived --can-write
3535
```
3636

37-
As a reminder, destinations are shared across your organization so without using --is-owner, destinations created by anyone in your organization will be returned.
38-
3937
### Update Destinations
4038
The CLI conveniently moves all update actions to first class commands on the destination. The allowed update actions are archiving, unarchiving, renaming, and updating credentials. To discover all update actions run `planet destinations --help`.
4139

@@ -47,7 +45,7 @@ planet destinations update parameters s3 my-destination-id NEW_ACCESS_KEY NEW_SE
4745
```
4846

4947
## Using destinations in Subscriptions API
50-
Now that you have created a destination, it can be used as the delivery location for subscriptions. Use the destination reference in the delivery block instead of credentials.
48+
After creating a destination, it can be used as the delivery location for subscriptions. Use the destination reference in the delivery block instead of credentials.
5149

5250
The subsequent examples will use the destination ref `pl:destinations/my-s3-destination-6HRjBcW74jeH9SC4VElKqX`.
5351
```json
@@ -106,15 +104,15 @@ Then create the subscription, with the json above saved to a file.
106104
planet subscriptions create my-subscription.json
107105
```
108106

109-
The results of the created subscription will be delivered to the destination provided. You may re-use the destinations across an unlimited number of subscriptions.
107+
The results of the created subscription will be delivered to the destination provided.
110108

111109
To retrieve all subscriptions created with a specific destination, issue the following command:
112110
```sh
113111
planet subscriptions list --destination-ref pl:destinations/my-s3-destination-6HRjBcW74jeH9SC4VElKqX
114112
```
115113

116114
## Using destinations in Orders API
117-
Now that you have created a destination, it can be used as the delivery location for orders. Use the destination reference in the delivery block instead of credentials.
115+
After creating a destination, it can be used as the delivery location for orders. Use the destination reference in the delivery block instead of credentials.
118116

119117
The subsequent examples will use the destination ref `pl:destinations/my-s3-destination-6HRjBcW74jeH9SC4VElKqX`.
120118
```json
@@ -137,13 +135,12 @@ The subsequent examples will use the destination ref `pl:destinations/my-s3-dest
137135
}
138136
```
139137

140-
141138
Then create the order, with the json above saved to a file.
142139
```sh
143140
planet orders create my-order.json
144141
```
145142

146-
The results of the created order will be delivered to the destination provided. You may re-use the destinations across an unlimited number of orders (and subscriptions!).
143+
The results of the created order will be delivered to the destination provided.
147144

148145
To retrieve all orders created with a specific destination, issue the following command:
149146
```sh

0 commit comments

Comments
 (0)