Community Discussions

Ask a Question
Back to all

Enquiry about new v3 alerts [/search/?aql=in:alerts] Api !

Hi, facing a issue with new version V3 , earlier was using https://integration-partner.armis.com/api/v1/search/?aql=in:alerts&limit=10 & getting proper response by using secret-key ( access token is correctly generated) , now i replaced this api with https://api.armis.com/api/v3/search/?asq=in:alerts&limit=10 / https://integration-partner.armis.com/api/v3/search/?asq=in:alerts&limit=10 with auth https://api.armis.com/v3/oauth/token & scope = "PERMISSION.ALERT.READ"

 {
    "grant_type": "client_credentials",
    "vendor_id": "<vendor_id>",
    "audience": "https://acme.armis.com/",
    "client_id": "[email protected]",
    "client_secret": "abcdefg",   
    "scopes": [
        "PERMISSION.ALERT.READ"
    ]
}

V3 API is always returns 404

{
"detail": "Not Found"
}

Please let me knw what is missing {any scope /permission} ,also please verify the above v3 API Is correct

or do we have a different api to fetch alerts in V3 ?