It seems like your browser didn't download the required fonts. Please revise your security settings and try again.

Get Accounts

  • Last updated on

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
200OK
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

EntryDescriptionType
results

The list of objects that each represent a Barracuda Incident Response account.

EntryDescriptionType
accountIdThe Barracuda Cloud Control account ID.string
accountNameThe account name.string
Array
resultsCountThe 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"
        }
    ]
}