This functionality is available only with Barracuda Email Protection Premium and Premium Plus plans. To upgrade to one of these plans, contact your Barracuda Networks Sales Representative.
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"
}
]
}