List VerificationReports
List all verification reports.
API Endpoint: GET /v1/identity/verification_reports
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.identity.verification_report.list()from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.identity.verification_report.list()Retrieve a VerificationReport
Retrieves an existing VerificationReport
API Endpoint: GET /v1/identity/verification_reports/{report}
from os import getenv
from sideko_stripe import Stripe
client = Stripe(token=getenv("API_TOKEN"))
res = client.identity.verification_report.get(report="string")from os import getenv
from sideko_stripe import AsyncStripe
client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.identity.verification_report.get(report="string")