Returns a table of OData feeds offered by an OData service from a uri {0}, headers {1}. A boolean value specifying whether ...

Returns a table of OData feeds offered by an OData service from a uri {0}, headers {1}. A boolean value specifying whether to use concurrent connections or an optional record parameter, {2}, may be specified to control the following options:
    
  • Query: Programmatically add query parameters to the URL without having to worry about escaping.
  • Headers : Specifying this value as a record will supply additional headers to an HTTP request.
  • ApiKeyName : If the target site has a notion of an API key, this parameter can be used to specify the name (not the value) of the key parameter that must be used in the URL. The actual key value is provided in the credential.
  • Timeout : Specifying this value as a duration will change the timeout for an HTTP request. The default value is 600 seconds.
  • EnableBatch : A logical (true/false) that sets whether to allow generation of an OData $batch request if the MaxUriLength is exceeded (default is false).
  • MaxUriLength : A number that indicates the max length of an allowed uri sent to an OData service. If exceeded and EnableBatch is true then the request will be made to an OData $batch endpoint, otherwise it will fail (default is 2048).
  • Concurrent : A logical (true/false) when set to true, requests to the service will be made concurrently. When set to false, requests will be made sequentially. When not specified, the value will be determined by the service's AsynchronousRequestsSupported annotation. If the service does not specify whether AsynchronousRequestsSupported is supported, requests will be made sequentially.
  • ODataVersion : A number (3 or 4) that specifies the OData protocol version to use for this OData service. When not specified, all supported versions will be requested. The service version will be determined by the OData-Version header returned by the service.
  • FunctionOverloads : A logical (true/false) when set to true, function import overloads will be listed in the navigator as separate entries, when set to false, function import overloads will be listed as one union function in the navigator. Default value for V3: false. Default value for V4: true.