Skip to main content

verifications

Creates, updates, deletes, gets or lists a verifications resource.

Overview

Nameverifications
TypeResource
Idaws.partnercentral_account.verifications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
completed_atstring (date-time)The timestamp when the verification process was completed. This field is null if the verification is still in progress.
started_atstring (date-time)The timestamp when the verification process was initiated.
verification_response_detailsobjectDetailed response information specific to the type of verification performed, including any verification-specific data or results.
verification_statusstringThe current status of the verification process. Possible values include pending, in-progress, completed, failed, or expired. (PENDING_CUSTOMER_ACTION, IN_PROGRESS, FAILED, SUCCEEDED, REJECTED)
verification_status_reasonstringAdditional information explaining the current verification status, particularly useful when the status indicates a failure or requires additional action. (pattern: <code>[\u0020-\u007E\u00A0-\uD7FF\uE000-\uFFFD]+</code>)
verification_typestringThe type of verification that was requested and processed. (BUSINESS_VERIFICATION, REGISTRANT_VERIFICATION)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_verificationselectregionRetrieves the current status and details of a verification process for a partner account. This operation allows partners to check the progress and results of business or registrant verification processes.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the current status and details of a verification process for a partner account. This operation allows partners to check the progress and results of business or registrant verification processes.

SELECT
completed_at,
started_at,
verification_response_details,
verification_status,
verification_status_reason,
verification_type
FROM aws.partnercentral_account.verifications
WHERE region = '{{ region }}' -- required
;