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 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
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"
        }
    ]
}