SearchProducts - Amazon Service Catalog
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

SearchProducts

Gets information about the products to which the caller has access.

Request Syntax

{ "AcceptLanguage": "string", "Filters": { "string" : [ "string" ] }, "PageSize": number, "PageToken": "string", "SortBy": "string", "SortOrder": "string" }

Request Parameters

The request accepts the following data in JSON format.

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

Type: String

Length Constraints: Maximum length of 100.

Required: No

Filters

The search filters. If no search filters are specified, the output includes all products to which the caller has access.

Type: String to array of strings map

Valid Keys: FullTextSearch | Owner | ProductType | SourceProductId

Required: No

PageSize

The maximum number of items to return with this call.

Type: Integer

Valid Range: Minimum value of 0. Maximum value of 100.

Required: No

PageToken

The page token for the next set of results. To retrieve the first set of results, use null.

Type: String

Length Constraints: Maximum length of 2024.

Pattern: [\u0009\u000a\u000d\u0020-\uD7FF\uE000-\uFFFD]*

Required: No

SortBy

The sort field. If no value is specified, the results are not sorted.

Type: String

Valid Values: Title | VersionCount | CreationDate

Required: No

SortOrder

The sort order. If no value is specified, the results are not sorted.

Type: String

Valid Values: ASCENDING | DESCENDING

Required: No

Response Syntax

{ "NextPageToken": "string", "ProductViewAggregations": { "string" : [ { "ApproximateCount": number, "Value": "string" } ] }, "ProductViewSummaries": [ { "Distributor": "string", "HasDefaultPath": boolean, "Id": "string", "Name": "string", "Owner": "string", "ProductId": "string", "ShortDescription": "string", "SupportDescription": "string", "SupportEmail": "string", "SupportUrl": "string", "Type": "string" } ] }

Response Elements

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

NextPageToken

The page token to use to retrieve the next set of results. If there are no additional results, this value is null.

Type: String

Length Constraints: Maximum length of 2024.

Pattern: [\u0009\u000a\u000d\u0020-\uD7FF\uE000-\uFFFD]*

ProductViewAggregations

The product view aggregations.

Type: String to array of ProductViewAggregationValue objects map

ProductViewSummaries

Information about the product views.

Type: Array of ProductViewSummary objects

Errors

InvalidParametersException

One or more parameters provided to the operation are not valid.

HTTP Status Code: 400

Examples

Search for all available products

The following JSON example retrieves all products available to the current user.

Sample Request

POST / content-type:application/x-amz-json-1.1 host:servicecatalog.us-west-2.amazonaws.com user-agent:aws-cli/1.10.19 Python/2.7.10 Darwin/15.5.0 botocore/1.4.10 x-amz-date:20160607T224008Z x-amz-target:AWS242ServiceCatalogService.SearchProducts

Sample Response

{ "ProductViewAggregations": { "Owner": [ { "ApproximateCount":4, "Value":"387896429941" } ], "ProductType": [ { "ApproximateCount":4, "Value":"ServiceCatalog" } ], "Vendor": [ { "ApproximateCount":1, "Value":"" }, { "ApproximateCount":1, "Value":"me" } ] }, "ProductViewSummaries": [ { "HasDefaultPath":false, "Id":"prodview-w35uhtf6nrqqy", "Name":"RDS template", "Owner":"AWS", "ProductId":"prod-3tsertlc2g7pw", "ShortDescription":"Test 2", "Type":"Base" }, { "HasDefaultPath":false, "Id":"prodview-r2tzjgsao7mc4", "Name":"Devo enviro 2", "Owner":"asda", "ProductId":"prod-enx2jvf33gi52", "ShortDescription":"asd", "Type":"Base" }, { "Distributor":"", "HasDefaultPath":false, "Id":"prodview-e64tf73gp3gl4", "Name":"Devo environment", "Owner":"test", "ProductId":"prod-3p2k2ejvcsdvi", "ShortDescription":"test", "Type":"Base" }, { "Distributor":"Me", "HasDefaultPath":false, "Id":"prodview-3fmrw464floam", "Name":"Testtemplate", "Owner":"MSP XYZ", "ProductId":"prod-eqeqzgemstiea", "ShortDescription":"asdas", "Type":"Base" } ] }

See Also

For more information about using this API in one of the language-specific Amazon SDKs, see the following: