verificationRequests
List verification requests
Returns a paginated list of all verification requests for the authenticated grantmaker.
get/v1/verification_requests
Query parameters
einstring
Filter by EIN. If provided, only returns verification requests matching this EIN.
page_limitinteger
Limit the size of the list that is returned. The default (and maximum) is 100 objects.
page_tokenstring
A token to use to retrieve the next page of results.
Response
The response for VerificationRequests.list
Example response
{
"results": [
{
"id": "vr_01jpjen1s23s29kkmnjsb6fzga",
"ein": "123456789",
"organization_name": "Local Community Foundation",
"organization_id": "org_01jpjenf5q6cawy43yxfcrxhct",
"status": "needs_review",
"website": "https://localfoundation.org",
"recommended_mailing_address": {
"line1": "123 Main St",
"line2": "Suite 100",
"city": "San Francisco",
"state": "CA",
"zip_code": "94105"
},
"created_at": "2020-01-31T23:00:00Z",
"updated_at": "2020-01-31T23:00:00Z"
}
]
}