Get details for a verification process
Lists all verification process for the scenario with filters with AND logic
URL: baseURL/scenario/{scenarioID}/verify
Operation: GET
Headers:
Content-Type: application/json
principalId: {accountID}
Path Params:
Param Name | Description | Validations |
---|---|---|
date_from | The starting date for the search | DateTime |
date_to | The ending date for the search | DateTime |
page | The specific page to return results for | int |
size | The number of results per page to return | int |
Example request:
curl --location --request GET 'baseURL/scenario/7280ecaa-a132-4908-8f26-c1ecbe138d98/verify' \
--header 'Content-Type: application/json' \
--header 'principalId: 1' \
--data '{
"date_from": "2020-08-04T00:10:32Z",
"date_to": "2020-10-04T00:10:32Z",
"page": 1,
"size": 10
}'
Example Response:
{
"data": [
{
"updated_at": "2020-09-04T07:33:52.000000Z",
"scenario_id": "7280ecaa-a132-4908-8f26-c1ecbe138d98",
"status": "CANCELED",
"phone": "+380969752341",
"mail": "[email protected]",
"ip": "127.0.0.1",
"pin": "3275",
"latest_channel": null,
"finalized_at": "2020-09-04T07:33:52.000000Z",
"expiration_date": "2020-09-04T07:35:37.000000Z",
"sticky_channel_applied": false,
"date_submitted": "2020-09-04T07:30:17Z",
"date_finalized": "2020-09-04T07:33:52Z",
"psd2_parameters": {
"amount": "20 USD",
"payee": "Bank"
},
"checks": [],
"events": [],
"actions": [
{
"latest_channel": null,
"action": "skip_channel",
"date_received": "2020-09-04T07:33:22Z",
"channel": null
},
{
"latest_channel": null,
"action": "cancel",
"date_received": "2020-09-04T07:33:52Z",
"channel": null
}
],
"fraud_results": null,
"verify_id": "10987a69-a130-4a8f-9b28-9bb825f53d33"
},
{
"updated_at": "2020-09-04T07:29:29.000000Z",
"scenario_id": "7280ecaa-a132-4908-8f26-c1ecbe138d98",
"status": "COMPLETED",
"phone": "+380969752341",
"mail": "[email protected]",
"ip": "127.0.0.1",
"pin": "4404",
"latest_channel": null,
"finalized_at": "2020-09-04T07:29:29.000000Z",
"expiration_date": "2020-09-04T07:30:56.000000Z",
"sticky_channel_applied": false,
"date_submitted": "2020-09-04T07:25:36Z",
"date_finalized": "2020-09-04T07:29:29Z",
"checks": [
{
"pin": "4404",
"result": "valid",
"channel": null,
"date_received": "2020-09-04T07:29:29Z"
},
{
"pin": "1111",
"result": "invalid",
"channel": null,
"date_received": "2020-09-04T07:28:18Z"
}
],
"events": [],
"actions": [],
"fraud_results": null,
"verify_id": "dc5b365f-d656-4aae-a7ad-8a4192c2a453"
}
],
"pagination": {
"total_results": 2,
"total_pages": 1,
"page": 1,
"size": 10
}
}
Updated 6 months ago