You are automating Cisco Umbrella policy updates using the Umbrella Management API. You need to identify the correct endpoint to retrieve the list of existing destination lists for a specific organization. Which URI pattern is correct?
Trap 1: /v1/organizations/{organizationId}/policies/destination-lists
This path does not exist in the Umbrella Management API.
Trap 2: /v1/reports/destinationlists/{organizationId}
This endpoint is used for reporting, not management.
Trap 3: /api/v2/orgs/{organizationId}/dest-lists
This is an incorrect URI structure for the Umbrella API.
- A
/admin/v2/organizations/{organizationId}/destinationlists
This is the correct API endpoint path for retrieving destination lists.
- B
/v1/organizations/{organizationId}/policies/destination-lists
Why wrong: This path does not exist in the Umbrella Management API.
- C
/v1/reports/destinationlists/{organizationId}
Why wrong: This endpoint is used for reporting, not management.
- D
/api/v2/orgs/{organizationId}/dest-lists
Why wrong: This is an incorrect URI structure for the Umbrella API.