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

Get Tenants

  • 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 Microsoft 365 tenants connected to an Incident Response account.

Endpoint

GET /beta/accounts/{accountId}/forensics/tenants

Parameters

NameTypeRequiredDescription
Path Parameter
accountIdstring*The Barracuda Cloud Control account ID obtained from the Get Accounts API.

Response Codes

Code
Description
200OK
401Unauthorized: 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 Microsoft 365 tenant connected to Barracuda Incident Response. 

Entry
Description
Type
created

The date the tenant was connected to Barracuda Incident Response.

string
tenantId The Microsoft 365 tenant ID.string
tenantNameThe tenant name.string
Array
resultsCountThe number of items.integer

Sample Request

curl -X GET "https://api.barracudanetworks.com/beta/accounts/{accountId}/forensics/tenants" \
--header "Authorization: Bearer {access_token}"

Sample Response

{
    "resultsCount": 1,
    "results": [
        {
            "tenantId": "f571bbf9-114c-4759-9ecb-2f852065595a",
            "tenantName": "Barracuda Networks Co Engineering",
            "created": "2021-04-05T08:00:00.000000Z"
        }
    ]
}