Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 1.22 KB

getSentShare.md

File metadata and controls

65 lines (47 loc) · 1.22 KB

pv share getSentShare

Command Reference > share > getSentShare

Description

Get a sent share in the given Purview account.

Syntax

pv share getSentShare --sentShareName=<val>

Required Arguments

--sentShareName (string)

The name of the sent share.

Optional Arguments

None

API Mapping

Share Data Plane > Sent Shares > Get

GET https://{accountName}.purview.azure.com/share/sentShares/{sentShareName}

Examples

Get a sent share.

pv share getSentShare --sentShareName "NewShare"
Sample response.

{
   "id":"/sentShares/NewShare",
   "name":"NewShare",
   "properties":{
      "collection":{
         "referenceName":"qrzdyx",
         "type":"CollectionReference"
      },
      "createdAt":"2022-09-01T16:48:25.0489591Z",
      "description":"This is a description.",
      "provisioningState":"Succeeded",
      "senderEmail":"[email protected]",
      "senderName":"Taygan Rifat",
      "senderTenantName":"Microsoft"
   },
   "shareKind":"InPlace",
   "type":"sentShares"
}