:doc:`PartnerCentralSellingAPI <../../partnercentral-selling>` / Client / list_solutions

**************
list_solutions
**************



.. py:method:: PartnerCentralSellingAPI.Client.list_solutions(**kwargs)

  

  Retrieves a list of Partner Solutions that the partner registered on Partner Central. This API is used to generate a list of solutions that an end user selects from for association with an opportunity.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListSolutions>`_  


  **Request Syntax**
  ::

    response = client.list_solutions(
        Catalog='string',
        MaxResults=123,
        NextToken='string',
        Sort={
            'SortOrder': 'ASCENDING'|'DESCENDING',
            'SortBy': 'Identifier'|'Name'|'Status'|'Category'|'CreatedDate'
        },
        Status=[
            'Active'|'Inactive'|'Draft',
        ],
        Identifier=[
            'string',
        ],
        Category=[
            'string',
        ]
    )
    
  :type Catalog: string
  :param Catalog: **[REQUIRED]** 

    Specifies the catalog associated with the request. This field takes a string value from a predefined list: ``AWS`` or ``Sandbox``. The catalog determines which environment the solutions are listed in. Use ``AWS`` to list solutions in the Amazon Web Services catalog, and ``Sandbox`` to list solutions in a secure and isolated testing environment.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results returned by a single call. This value must be provided in the next call to retrieve the next set of results.

     

    Default: 20

    

  
  :type NextToken: string
  :param NextToken: 

    A pagination token used to retrieve the next set of results in subsequent calls. This token is included in the response only if there are additional result pages available.

    

  
  :type Sort: dict
  :param Sort: 

    Object that configures sorting done on the response. Default ``Sort.SortBy`` is ``Identifier``.

    

  
    - **SortOrder** *(string) --* **[REQUIRED]** 

      Specifies the sorting order, either ``Ascending`` or ``Descending``. The default is ``Descending``.

      

    
    - **SortBy** *(string) --* **[REQUIRED]** 

      Specifies the attribute to sort by, such as ``Name``, ``CreatedDate``, or ``Status``.

      

    
  
  :type Status: list
  :param Status: 

    Filters solutions based on their status. This filter helps partners manage their solution portfolios effectively.

    

  
    - *(string) --* 

    

  :type Identifier: list
  :param Identifier: 

    Filters the solutions based on their unique identifier. Use this filter to retrieve specific solutions by providing the solution's identifier for accurate results.

    

  
    - *(string) --* 

    

  :type Category: list
  :param Category: 

    Filters the solutions based on the category to which they belong. This allows partners to search for solutions within specific categories, such as ``Software``, ``Consulting``, or ``Managed Services``.

    

  
    - *(string) --* 

    

  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'SolutionSummaries': [
              {
                  'Catalog': 'string',
                  'Id': 'string',
                  'Arn': 'string',
                  'Name': 'string',
                  'Status': 'Active'|'Inactive'|'Draft',
                  'Category': 'string',
                  'CreatedDate': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **SolutionSummaries** *(list) --* 

        An array with minimal details for solutions matching the request criteria.

        
        

        - *(dict) --* 

          Specifies minimal information for the solution offered to solve the customer's business problem.

          
          

          - **Catalog** *(string) --* 

            Specifies the catalog in which the solution is hosted, either ``AWS`` or ``Sandbox``. This helps partners differentiate between live solutions and those in testing environments.

            
          

          - **Id** *(string) --* 

            Enables the association of solutions (offerings) to opportunities.

            
          

          - **Arn** *(string) --* 

            The SolutionBase structure provides essential information about a solution.

            
          

          - **Name** *(string) --* 

            Specifies the solution name.

            
          

          - **Status** *(string) --* 

            Specifies the solution's current status, which indicates its state in the system. Valid values: ``Active`` | ``Inactive`` | ``Draft``. The status helps partners and Amazon Web Services track the solution's lifecycle and availability. Filter for ``Active`` solutions for association to an opportunity.

            
          

          - **Category** *(string) --* 

            Specifies the solution category, which helps to categorize and organize the solutions partners offer. Valid values: ``Software Product`` | ``Consulting Service`` | ``Hardware Product`` | ``Communications Product`` | ``Professional Service`` | ``Managed Service`` | ``Value-Added Resale Amazon Web Services Service`` | ``Distribution Service`` | ``Training Service`` | ``Merger and Acquisition Advising Service``.

            
          

          - **CreatedDate** *(datetime) --* 

            Indicates the solution creation date. This is useful to track and audit.

            
      
    
      

      - **NextToken** *(string) --* 

        A pagination token used to retrieve the next set of results in subsequent calls. This token is included in the response only if there are additional result pages available.

        
  
  **Exceptions**
  
  *   :py:class:`PartnerCentralSellingAPI.Client.exceptions.ThrottlingException`

  
  *   :py:class:`PartnerCentralSellingAPI.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`PartnerCentralSellingAPI.Client.exceptions.InternalServerException`

  
  *   :py:class:`PartnerCentralSellingAPI.Client.exceptions.ValidationException`

  
  *   :py:class:`PartnerCentralSellingAPI.Client.exceptions.ResourceNotFoundException`

  