Do you know when the APIVoid integration in Google SecOps (SOAR) will support the new APIVoid v2 APIs?
The current integration (linked below) references the older v1 endpoints:
https://docs.cloud.google.com/chronicle/docs/soar/marketplace-integrations/apivoid
APIVoid has announced that v1 APIs will be deprecated on Feb 28, and v2 introduces breaking changes. From the APIVoid v2 API documentation, requests now use POST with a JSON payload, for example:
curl -X POST "https://api.apivoid.com/v2/ip-reputation" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY_HERE" \
-d '{"ip": "80.82.77.139"}'
Additionally, the response structure has changed. Previously (v1), responses were wrapped under data or data.report, e.g.:
{
"data": {
"report": {
"ip": "80.82.77.139",
"blacklists": {
"engines": {
...
In v2, the response is now flat, for example:
{
"ip": "80.82.77.139",
"version": "IPv4",
"blacklists": {
"engines": {
...
Other response fields may have changed or been removed. Given these changes, the existing integration will likely stop working once v1 is retired.
Any updates on the timeline or planned support for APIVoid v2 in Google SecOps?
Thanks!