# Get-ERPServices Cmdlet to retrieve metadata informations about the services. ## Syntax ```{code-block} powershell :linenos: true Get-ERPServices [-Available] [] ``` ## Parameters | Type | Name | Description | Optional | |----------------|-----------|---------------------------------------|----------| | SwitchParamter | Available | Retrieves only the available services | yes | ## Return type []() **\[\]** ← on success\ **empty array** ← on failure. Exception/ErrorMessage can be accessed using [\$Error](). ## Remarks When calling the Get-ERPServices without arguments all the services are retrieved. ## Examples In the following examples we are using the public OData Services () for demonstration purposes: **Get all services** ```{code-block} powershell :linenos: true $services = Get-ERPServices ``` **Get all available services** ```{code-block} powershell :linenos: true $availableServices = Get-ERPServices -Available ```