This guide illustrates how to implement the ID Verification Delete API.
Date | Description |
---|---|
2019-08-27 | Added Delete API for Authentication |
2019-01-30 | Document formatting |
2016-05-18 | Removed TLS_DHE ciphers |
2015-10-20 | Added ECDHE ciphers to supported cipher suites |
2015-09-23 | Initial release |
- Usage
- Delete API for ID Verification
- Delete API for Authentication
- Delete API for Document Verification
If you do not wish to store sensitive customer data after a verification has been completed, you can delete the image(s) and any extracted data in a transaction record either directly in the Customer Portal or via the Delete API.
ID Verification API calls are protected using HTTP Basic Authentication. Your Basic Auth credentials are constructed using your API token as the user-id and your API secret as the password. You can view and manage your API token and secret in the Customer Portal under Settings > API credentials.
You can generate a separate set of API credentials in the Customer Portal to use when retrieving or deleting transaction data under Settings > API credentials > Transaction administration APIs.
The [TLS Protocol](https://tools.ietf.org/html/rfc5246) is required to securely transmit your data, and we strongly recommend using the latest version. For information on cipher suites supported by Jumio during the TLS handshake see [Supported cipher suites](/netverify/supported-cipher-suites.md).
The following fields are required in the header section of your request:
Accept: application/json
Authorization:
(see RFC 7617)
User-Agent: YourCompany YourApp/v1.0
ℹ️ Jumio requires the User-Agent value to reflect your business or entity name for API troubleshooting. |
---|
Use the HTTP DELETE
method to call the RESTful API endpoint below. Specify the ID Verification transaction reference you want to delete as a path parameter.
HTTP Request Method: DELETE
REST URL (US): https://netverify.com/api/netverify/v2/scans/<transactionReference>
REST URL (EU): https://lon.netverify.com/api/netverify/v2/scans/<transactionReference>
REST URL (SGP): https://core-sgp.jumio.com/api/netverify/v2/scans/<transactionReference>
Required items appear in bold type.
Name | Type | Max. Length | Description |
---|---|---|---|
transactionReference | String | 36 | Jumio reference number for an existing ID Verification transaction in your account. |
Unsuccessful requests will return the relevant HTTP status code and information about the cause of the error.
Successful requests will return HTTP status code 200 OK
as confirmation that you have successfully deleted the image(s) and extracted data from the specified transaction record.
DELETE https://netverify.com/api/netverify/v2/scans/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/ HTTP/1.1
Accept: application/json
User-Agent: Example Corp SampleApp/1.0.1
Authorization: Basic xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Use the HTTP DELETE
method to call the RESTful API endpoint below. Specify the Authentication transaction reference you want to delete as a path parameter.
HTTP Request Method: DELETE
REST URL (US): https://netverify.com/api/netverify/v2/authentications/<transactionReference>
REST URL (EU): https://lon.netverify.com/api/netverify/v2/authentications/<transactionReference>
REST URL (SGP): https://core-sgp.jumio.com/api/netverify/v2/authentications/<transactionReference>
Required items appear in bold type.
Name | Type | Max. Length | Description |
---|---|---|---|
transactionReference | String | 36 | Jumio reference number for an existing Authentication transaction in your account. |
Unsuccessful requests will return the relevant HTTP status code and information about the cause of the error.
Successful requests will return HTTP status code 200 OK
as confirmation that you have successfully deleted PII data, images and facemap from the specified authentication transaction record.
DELETE https://netverify.com/api/netverify/v2/authentications/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/ HTTP/1.1
Accept: application/json
User-Agent: Example Corp SampleApp/1.0.1
Authorization: Basic xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Use the HTTP DELETE
method to call the RESTful API endpoint below. Specify the Document Verification transaction reference you want to delete as a path parameter.
HTTP Request Method: DELETE
REST URL (US): https://retrieval.netverify.com/api/netverify/v2/documents/<transactionReference>
REST URL (EU): https://retrieval.lon.netverify.com/api/netverify/v2/documents/<transactionReference>
REST URL (SGP): https://retrieval.core-sgp.jumio.com/api/netverify/v2/documents/<transactionReference>
Required items appear in bold type.
Name | Type | Max. Length | Description |
---|---|---|---|
transactionReference | String | 36 | Jumio reference number for an existing Document Verification transaction in your account. |
Unsuccessful requests will return the relevant HTTP status code and information about the cause of the error.
Successful requests will return HTTP status code 200 OK
as confirmation that you have successfully deleted the image(s) and extracted data from the specified transaction record.
DELETE https://retrieval.netverify.com/api/netverify/v2/documents/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/ HTTP/1.1
Accept: application/json
User-Agent: Example Corp SampleApp/1.0.1
Authorization: Basic xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
© Jumio Corporation, 395 Page Mill Road, Suite 150 Palo Alto, CA 94306