Function
This API is used to search for the principals that have access to shared resources.
Debugging
You can debug this API through automatic authentication in API Explorer or use the SDK sample code generated by API Explorer.
URI
POST https://{endpoint}/v1/shared-principals/search
Request Parameters
Table 2 Request body parameters
Parameter |
Mandatory |
Type |
Description |
limit |
No |
Integer |
Maximum number of entries that can be displayed on a page. |
marker |
No |
String |
Page marker. |
principals |
No |
Array of strings |
Principal associated with the resource share. |
resource_urn |
No |
String |
URN of the resource. |
resource_owner |
Yes |
String |
Resource owner (self or other-accounts) of the resource share. |
resource_share_ids |
No |
Array of strings |
List of resource share IDs. |
Response Parameters
Status code: 200
Table 3 Response body parameters
Parameter |
Type |
Description |
shared_principals |
Array of SharedPrincipal objects |
List of principal details. |
page_info |
PageInfo object |
Pagination details. |
Table 4 SharedPrincipal
Parameter |
Type |
Description |
resource_share_id |
String |
ID of the resource share associated with the principal. |
id |
String |
Account ID of the principal or URN of the resource. |
created_at |
String |
Time when the principal was associated with the resource share. |
updated_at |
String |
Time when the resource share was last updated. |
Table 5 PageInfo
Parameter |
Type |
Description |
previous_marker |
String |
Marker of the previous page. |
next_marker |
String |
Marker of the next page. |
current_count |
Integer |
Number of pages. |
Example Requests
Searching for the principals that have access to shared resources
POST https://{endpoint}/v1/shared-principals/search
{
"limit" : 2000,
"marker" : "string",
"principals" : [ "string" ],
"resource_urn" : "string",
"resource_owner" : "self",
"resource_share_ids" : [ "string" ]
}
Example Responses
Status code: 200
Request succeeded.
{
"shared_principals" : [ {
"resource_share_id" : "string",
"id" : "string",
"created_at" : "2022-09-19T02:33:13.496Z",
"updated_at" : "2022-09-19T02:33:13.496Z"
} ],
"page_info" : {
"previous_marker" : "string",
"next_marker" : "string",
"current_count" : 2000
}
}
Status Codes
Status Code |
Description |
200 |
Request succeeded. |