swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector Objects API schemes: - https tags: - name: Objects paths: /{tenantID}/getObjectsByObjectIds: post: tags: - Objects operationId: microsoftAzureObjectsGetobjectsbyobjectids description: Gets the directory objects specified in a list of object IDs. You can also specify which resource collections (users, groups, etc.) should be searched by specifying the optional types parameter. parameters: - name: parameters in: body required: true schema: $ref: '#/definitions/GetObjectsParameters' description: Objects filtering parameters. - $ref: '#/parameters/ApiVersionParameter' - $ref: '#/parameters/tenantIDInPath' responses: '200': description: OK. The operation was successful. schema: $ref: '#/definitions/DirectoryObjectListResult' x-ms-pageable: nextLinkName: odata.nextLink operationName: Objects_GetObjectsByObjectIdsNext summary: Microsoft Azure Post Tenantid Getobjectsbyobjectids definitions: DirectoryObject: type: object discriminator: objectType properties: objectId: type: string description: The object ID. readOnly: true objectType: type: string description: The object type. deletionTimestamp: type: string format: date-time description: The time at which the directory object was deleted. readOnly: true x-nullable: true required: - objectType additionalProperties: type: object description: Represents an Azure Active Directory object. GetObjectsParameters: type: object properties: objectIds: type: array items: type: string description: The requested object IDs. types: type: array items: type: string description: The requested object types. includeDirectoryObjectReferences: type: boolean description: If true, also searches for object IDs in the partner tenant. additionalProperties: type: object description: Request parameters for the GetObjectsByObjectIds API. DirectoryObjectListResult: type: object properties: value: type: array items: $ref: '#/definitions/DirectoryObject' description: A collection of DirectoryObject. odata.nextLink: type: string description: The URL to get the next set of results. description: DirectoryObject list operation result. parameters: ApiVersionParameter: name: api-version in: query required: true type: string description: Client API version. tenantIDInPath: name: tenantID in: path required: true type: string description: The tenant ID. x-ms-parameter-location: client x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'