Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.12 KB

File metadata and controls

54 lines (36 loc) · 1.12 KB

list

List VerificationReports

List all verification reports.

API Endpoint: GET /v1/identity/verification_reports

Synchronous Client

from os import getenv
from sideko_stripe import Stripe

client = Stripe(token=getenv("API_TOKEN"))
res = client.identity.verification_report.list()

Asynchronous Client

from os import getenv
from sideko_stripe import AsyncStripe

client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.identity.verification_report.list()

get

Retrieve a VerificationReport

Retrieves an existing VerificationReport

API Endpoint: GET /v1/identity/verification_reports/{report}

Synchronous Client

from os import getenv
from sideko_stripe import Stripe

client = Stripe(token=getenv("API_TOKEN"))
res = client.identity.verification_report.get(report="string")

Asynchronous Client

from os import getenv
from sideko_stripe import AsyncStripe

client = AsyncStripe(token=getenv("API_TOKEN"))
res = await client.identity.verification_report.get(report="string")