Retrieve ID verification

Get verification

This endpoint retrieves the verification object.

import requests
 
response = requests.get("https://proxy.webshare.io/api/v2/idverification/", headers={"Authorization": "Token APITOKEN"})
response.json()
curl "https://proxy.webshare.io/api/v2/idverification/" \
  -H "Authorization: Token APITOKEN"

The above command returns JSON structured like this:

{
  "id": 1,
  "state": "not-required",
  "client_secret": null,
  "verification_failure_times": 0,
  "max_verification_failure_times": 0,
  "created_at": "2019-05-09T23:34:00.095501-07:00",
  "updated_at": "2019-05-09T23:34:00.095501-07:00",
  "verified_at": null
}

HTTP request

GET https://proxy.webshare.io/api/v2/idverification/