SignalPrint - Submitting Multiple Events
Number of APIs: 1
Note: before running this collection, make sure that you set your Verosint API key in the [Environments -> Globals] section. The name of the variable is api-key
Usage
Prepare a CSV file or a JSON file with the list of timestamp
, accountId
, ip
, email
, phone
and userAgent
values.
Note: the timestamp parameter for sending signals requires the value to be in the standard RFC3339 format.
Next, [run] the collection:
Click select data and choose the file using the file system picker created above
Check Save Responses in the Advanced Settings section to see the response from the API calls
Example Input Files
CSV
timestamp,ip,accountId,email,phone,userAgent,type
2023-02-05T06:30:10-06:00,67.160.112.3,bjensen,bjensen@gmail.com,+12021234567,"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",LOGIN_SUCCESS
2023-02-05T07:49:15-06:00,67.160.112.99,babsjensen,babsjensen@yahoo.com,+12021234567,"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",LOGIN_SUCCESS
2023-02-05T09:00:15-06:00,67.160.112.99,babs.jensen79,babs.jensen79@hotmail.com,+12021234567,"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",LOGIN_SUCCESS
2023-02-05T09:21:12-06:00,67.160.112.44,babsjensen,babsjensen@yahoo.com,+12021234567,"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",LOGIN_FAILED
2023-02-05T09:53:19-06:00,67.160.112.3,bjensen,bjensen@gmail.com,+12021234567,"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.1 Safari/537.37",LOGIN_SUCCESS
JSON
[
{
"timestamp": "2023-02-05T06:30:10-06:00",
"accountId": "bjensen",
"ip": "67.160.112.3",
"email": "bjensen@gmail.com",
"phone": "+12021234567",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",
"type": "LOGIN_SUCCESS"
},
{
"timestamp": "2023-02-05T07:49:15-06:00",
"accountId": "babsjensen",
"ip": "67.160.112.99",
"email": "babsjensen@yahoo.com",
"phone": "+12021234567",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",
"type": "LOGIN_SUCCESS"
},
{
"timestamp": "2023-02-05T09:00:15-06:00",
"accountId": "babs.jensen79",
"ip": "67.160.112.99",
"email": "babs.jensen79@hotmail.com",
"phone": "+12021234567",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",
"type": "LOGIN_SUCCESS"
},
{
"timestamp": "2023-02-05T09:21:12-06:00",
"accountId": "babsjensen",
"ip": "67.160.112.44",
"email": "babsjensen@yahoo.com",
"phone": "+12021234567",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36",
"type": "LOGIN_FAILED"
},
{
"timestamp": "2023-02-05T09:53:19-06:00",
"accountId": "bjensen",
"ip": "67.160.112.3",
"email": "bjensen@gmail.com",
"phone": "+12021234567",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.1 Safari/537.37",
"type": "LOGIN_SUCCESS"
}
]