v51

latestOpenAPI 3.0.3Apache-2.0raw.githubusercontent.com2026-08-01276140748.5 KB
Azure Entities
Community
Enterprise

Get Azure entity

Retrieves entity information for the given Azure object ID. If related_entity_type parameter is not set, this endpoint will return information about a single entity. Using the counts boolean parameter will further modify the response. If related_entity_type parameter is set, this endpoint will return information about entities related to a single entity. The type parameter will morph the response data structure. The list value for the type parameter also accepts skip and limit parameters.

get/api/v2/azure/{entity_type}

Query parameters

object_idstring required

The object ID of the entity being operated on.

countsboolean

Returns related entity counts. Does not work with related_entity_type parameter.

related_entity_typestring

Flags the query to return related entity information based on the type passed.

type'list' | 'graph'

The type of return data expected. Only works with related_entity_type parameter.

skipinteger

The number of items to skip in a paginated response.

This query parameter is used for determining the number of objects to skip in pagination. Only compatible with related_entity_type and type=list

limitinteger

The limit of results requested by the client.

This query parameter is used for setting an upper limit of objects returned in paginated responses. Only compatible with related_entity_type and type=list

Response

This endpoint returns a polymorphic response dependent on the query parameters passed. Three different response schemas are possible:

  • entity schema is used when related_entity_type is not set. Additional 'count' properties are dependent on the type of entity being queried.
  • related-list schema is used when related_entity_type is set and type parameter is either list or not set (it is the default), and it supports pagination.
  • related-graph schema is used when related_entity_type is set and type=graph.
OR
OR
object required

This response is used when related_entity_type is set and the type parameter is set to graph. It returns graph data without a basic data response wrapper.