AlexaForBusiness / Client / list_skills_store_categories

list_skills_store_categories#

AlexaForBusiness.Client.list_skills_store_categories(**kwargs)#

Lists all categories in the Alexa skill store.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.list_skills_store_categories(
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NextToken (string) – The tokens used for pagination.

  • MaxResults (integer) – The maximum number of categories returned, per paginated calls.

Return type:

dict

Returns:

Response Syntax

{
    'CategoryList': [
        {
            'CategoryId': 123,
            'CategoryName': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • CategoryList (list) –

      The list of categories.

      • (dict) –

        The skill store category that is shown. Alexa skills are assigned a specific skill category during creation, such as News, Social, and Sports.

        • CategoryId (integer) –

          The ID of the skill store category.

        • CategoryName (string) –

          The name of the skill store category.

    • NextToken (string) –

      The tokens used for pagination.