This functionality is not available with the legacy Barracuda Email Protection Advanced plan. All other Email Protection Plans, including all current Email Protection Plans have this functionality.
Retrieves a list of accounts for Incident Response.
Endpoint
GET /beta/accounts/forensics
Parameters
None
Response Codes
| Code | Description | 
|---|---|
| 200 | OK | 
| 401 | Unauthorized: There is a missing or incorrect API token in header or the client did not have permission to access the requested resource. | 
Response
| Entry | Description | Type | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| results | The list of objects that each represent a Barracuda Incident Response account. 
 | Array | |||||||||
| resultsCount | The number of items. | integer | 
Sample Request
curl -X GET "https://api.barracudanetworks.com/beta/accounts/forensics" \
--header "Authorization: Bearer {access_token}"Sample Response
"{
    "resultsCount": 1,
    "results": [
        {
            "accountId": "1000000001",
            "accountName": "Barracuda Networks Co"
        }
    ]
}