:doc:`PinpointSMSVoiceV2 <../../pinpoint-sms-voice-v2>` / Client / describe_registration_field_values

**********************************
describe_registration_field_values
**********************************



.. py:method:: PinpointSMSVoiceV2.Client.describe_registration_field_values(**kwargs)

  

  Retrieves the specified registration field values.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/pinpoint-sms-voice-v2-2022-03-31/DescribeRegistrationFieldValues>`_  


  **Request Syntax**
  ::

    response = client.describe_registration_field_values(
        RegistrationId='string',
        VersionNumber=123,
        SectionPath='string',
        FieldPaths=[
            'string',
        ],
        NextToken='string',
        MaxResults=123
    )
    
  :type RegistrationId: string
  :param RegistrationId: **[REQUIRED]** 

    The unique identifier for the registration.

    

  
  :type VersionNumber: integer
  :param VersionNumber: 

    The version number of the registration.

    

  
  :type SectionPath: string
  :param SectionPath: 

    The path to the section of the registration.

    

  
  :type FieldPaths: list
  :param FieldPaths: 

    An array of paths to the registration form field.

    

  
    - *(string) --* 

    

  :type NextToken: string
  :param NextToken: 

    The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return per each request.

    

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

    
    ::

      {
          'RegistrationArn': 'string',
          'RegistrationId': 'string',
          'VersionNumber': 123,
          'RegistrationFieldValues': [
              {
                  'FieldPath': 'string',
                  'SelectChoices': [
                      'string',
                  ],
                  'TextValue': 'string',
                  'RegistrationAttachmentId': 'string',
                  'DeniedReason': 'string',
                  'Feedback': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **RegistrationArn** *(string) --* 

        The Amazon Resource Name (ARN) for the registration.

        
      

      - **RegistrationId** *(string) --* 

        The unique identifier for the registration.

        
      

      - **VersionNumber** *(integer) --* 

        The current version of the registration.

        
      

      - **RegistrationFieldValues** *(list) --* 

        An array of RegistrationFieldValues objects that contain the values for the requested registration.

        
        

        - *(dict) --* 

          Provides the values of the specified field.

          
          

          - **FieldPath** *(string) --* 

            The path to the registration form field. You can use  DescribeRegistrationFieldDefinitions for a list of **FieldPaths**.

            
          

          - **SelectChoices** *(list) --* 

            An array of values for the form field.

            
            

            - *(string) --* 
        
          

          - **TextValue** *(string) --* 

            The text data for a free form field.

            
          

          - **RegistrationAttachmentId** *(string) --* 

            The unique identifier for the registration attachment.

            
          

          - **DeniedReason** *(string) --* 

            A description of why the registration was denied.

            
          

          - **Feedback** *(string) --* 

            Feedback provided for this specific field during the registration review process. This may include validation errors, suggestions for improvement, or additional requirements.

            
      
    
      

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

        The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.

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

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

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

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

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

  