URL Parameter (Connect-OData Cmdlet)
Specifies the root URL of the OData service, also called the service root URL. For example, http://services.odata.org/V4/Northwind/Northwind.svc.
Syntax
Connect-OData -URL string
Data Type
cstr
Default Value
""
Remarks
The service root is the base portion of a URL before the resource path and any query options.
For example, in the URL: http://host:port/path/SampleService.svc/Categories(1)/Products?$top=2$orderby=Name
- The service root URL is http://host:port/path/SampleService.svc/.
- The resource path is Categories(1)/Products?.
- The query options are $top=2$orderby=Name.
This is a required parameter.