Function
This API is used to search for a resource sharing invitation based on certain search criteria.
Debugging
You can debug this API through automatic authentication in API Explorer or use the SDK sample code generated by API Explorer.
Authorization Information
Each account has all the permissions required to call all APIs, but IAM users must be assigned the required permissions.
- If you are using role/policy-based authorization, see Permissions Policies and Supported Actions for details on the required permissions.
- If you are using identity policy-based authorization, the following identity policy-based permissions are required.
| Action | Access Level | Resource Type (*: required) | Condition Key | Alias | Dependencies |
| ram:resourceShareInvitations:search | Read | - | - | - | - |
URI
POST /v1/resource-share-invitations/search
Request Parameters
Table 2 Request body parameters | Parameter | Mandatory | Type | Description |
| resource_share_ids | No | Array of strings | List of resource share IDs. |
| resource_share_invitation_ids | No | Array of strings | List of resource sharing invitation IDs. |
| status | No | String | Status of the resource sharing invitation. |
| limit | No | Integer | Maximum number of results on a page. If the limit parameter is not specified, the default value is 1000. |
| marker | No | String | Paging location marker. The query starts from the next piece of data indexed by this parameter. You do not need to specify this parameter when you query resources on the first page. When you query resources on subsequent pages, set this parameter to the location returned in the response body for the previous query. |
Response Parameters
Status code: 200
Table 3 Response body parameters | Parameter | Type | Description |
| resource_share_invitations | Array of ResourceShareInvitation objects | Details about the resource sharing invitation. |
| page_info | PageInfo object | Pagination details. |
Table 4 ResourceShareInvitation | Parameter | Type | Description |
| receiver_account_id | String | ID of an account that receives the resource sharing invitation. |
| resource_share_id | String | ID of the resource share. |
| resource_share_name | String | Name of the resource share. |
| resource_share_invitation_id | String | ID of the resource sharing invitation. |
| sender_account_id | String | ID of an account that sends the resource sharing invitation. |
| status | String | Status of the resource sharing invitation. |
| created_at | String | Time when the invitation was created. |
| updated_at | String | Time when the invitation 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 resource sharing invitations based on certain search criteria
POST /v1/resource-share-invitations/search
{
"resource_share_ids" : [ "string" ],
"resource_share_invitation_ids" : [ "string" ],
"status" : "string",
"limit" : 2000,
"marker" : "0"
} Example Responses
Status code: 200
Request succeeded.
{
"resource_share_invitations" : [ {
"receiver_account_id" : "string",
"resource_share_id" : "string",
"resource_share_name" : "string",
"resource_share_invitation_id" : "string",
"sender_account_id" : "string",
"status" : "string",
"created_at" : "2022-09-23T06:43:43.999Z",
"updated_at" : "2022-09-23T06:43:43.999Z"
} ],
"page_info" : {
"previous_marker" : "0",
"next_marker" : "2000",
"current_count" : 2000
}
} Status Codes
| Status Code | Description |
| 200 | Request succeeded. |