--- id: v2024-resource-objects-request title: ResourceObjectsRequest pagination_label: ResourceObjectsRequest sidebar_label: ResourceObjectsRequest sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'ResourceObjectsRequest', 'V2024ResourceObjectsRequest'] slug: /tools/sdk/powershell/v2024/models/resource-objects-request tags: ['SDK', 'Software Development Kit', 'ResourceObjectsRequest', 'V2024ResourceObjectsRequest'] --- # ResourceObjectsRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ObjectType** | **String** | The type of resource objects to iterate over. | [optional] [default to "account"] **MaxCount** | **Int32** | The maximum number of resource objects to iterate over and return. | [optional] [default to 25] ## Examples - Prepare the resource ```powershell $ResourceObjectsRequest = Initialize-PSSailpoint.V2024ResourceObjectsRequest -ObjectType group ` -MaxCount 100 ``` - Convert the resource to JSON ```powershell $ResourceObjectsRequest | ConvertTo-JSON ``` [[Back to top]](#)