List
bulk_verification.list(BulkVerificationListParams**kwargs) -> BulkVerificationListResponse
GET/v1/addver_lists
Retrieve a list of your bulk verification lists.
List
import os
from postgrid import PostGrid
client = PostGrid(
address_verification_api_key=os.environ.get("POSTGRID_ADDRESS_VERIFICATION_API_KEY"), # This is the default and can be omitted
)
bulk_verifications = client.bulk_verification.list()
print(bulk_verifications.data){
"data": {
"count": 0,
"data": [
{
"id": "id",
"cost": 0,
"count": 0,
"createdAt": "2019-12-27T18:11:19.117Z",
"file": "file",
"mappings": {
"line1": "line1",
"city": "city",
"country": "country",
"firstName": "firstName",
"fullName": "fullName",
"lastName": "lastName",
"line2": "line2",
"postalOrZip": "postalOrZip",
"provinceOrState": "provinceOrState"
},
"name": "name",
"organization": "organization",
"status": "status",
"updatedAt": "2019-12-27T18:11:19.117Z",
"useGeocode": true,
"useIntlVerification": true,
"useProperCase": true,
"user": "user",
"defaultCountry": "defaultCountry",
"metadata": {
"statusCount": {
"corrected": 0,
"failed": 0,
"verified": 0
}
},
"numInvalidRows": 0,
"result": "result",
"runCCOA": true,
"runNCOA": true
}
]
},
"message": "message",
"status": "success"
}Returns Examples
{
"data": {
"count": 0,
"data": [
{
"id": "id",
"cost": 0,
"count": 0,
"createdAt": "2019-12-27T18:11:19.117Z",
"file": "file",
"mappings": {
"line1": "line1",
"city": "city",
"country": "country",
"firstName": "firstName",
"fullName": "fullName",
"lastName": "lastName",
"line2": "line2",
"postalOrZip": "postalOrZip",
"provinceOrState": "provinceOrState"
},
"name": "name",
"organization": "organization",
"status": "status",
"updatedAt": "2019-12-27T18:11:19.117Z",
"useGeocode": true,
"useIntlVerification": true,
"useProperCase": true,
"user": "user",
"defaultCountry": "defaultCountry",
"metadata": {
"statusCount": {
"corrected": 0,
"failed": 0,
"verified": 0
}
},
"numInvalidRows": 0,
"result": "result",
"runCCOA": true,
"runNCOA": true
}
]
},
"message": "message",
"status": "success"
}