:doc:`ServiceCatalog <../../servicecatalog>` / Client / list_organization_portfolio_access

**********************************
list_organization_portfolio_access
**********************************



.. py:method:: ServiceCatalog.Client.list_organization_portfolio_access(**kwargs)

  

  Lists the organization nodes that have access to the specified portfolio. This API can only be called by the management account in the organization or by a delegated admin.

   

  If a delegated admin is de-registered, they can no longer perform this operation.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListOrganizationPortfolioAccess>`_  


  **Request Syntax**
  ::

    response = client.list_organization_portfolio_access(
        AcceptLanguage='string',
        PortfolioId='string',
        OrganizationNodeType='ORGANIZATION'|'ORGANIZATIONAL_UNIT'|'ACCOUNT',
        PageToken='string',
        PageSize=123
    )
    
  :type AcceptLanguage: string
  :param AcceptLanguage: 

    The language code.

     

    
    * ``jp`` - Japanese
     
    * ``zh`` - Chinese
    

    

  
  :type PortfolioId: string
  :param PortfolioId: **[REQUIRED]** 

    The portfolio identifier. For example, ``port-2abcdext3y5fk``.

    

  
  :type OrganizationNodeType: string
  :param OrganizationNodeType: **[REQUIRED]** 

    The organization node type that will be returned in the output.

     

    
    * ``ORGANIZATION`` - Organization that has access to the portfolio.
     
    * ``ORGANIZATIONAL_UNIT`` - Organizational unit that has access to the portfolio within your organization.
     
    * ``ACCOUNT`` - Account that has access to the portfolio within your organization.
    

    

  
  :type PageToken: string
  :param PageToken: 

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

    

  
  :type PageSize: integer
  :param PageSize: 

    The maximum number of items to return with this call.

    

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

    
    ::

      {
          'OrganizationNodes': [
              {
                  'Type': 'ORGANIZATION'|'ORGANIZATIONAL_UNIT'|'ACCOUNT',
                  'Value': 'string'
              },
          ],
          'NextPageToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **OrganizationNodes** *(list) --* 

        Displays information about the organization nodes.

        
        

        - *(dict) --* 

          Information about the organization node.

          
          

          - **Type** *(string) --* 

            The organization node type.

            
          

          - **Value** *(string) --* 

            The identifier of the organization node.

            
      
    
      

      - **NextPageToken** *(string) --* 

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

        
  
  **Exceptions**
  
  *   :py:class:`ServiceCatalog.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`ServiceCatalog.Client.exceptions.InvalidParametersException`

  
  *   :py:class:`ServiceCatalog.Client.exceptions.OperationNotSupportedException`

  