
Use the HTTP connector to fetch resources from various Web services, authenticated by Azure Active Directory (Azure AD), or from an on-premise web service.
|
Status: Production |
Tier: Premium |
Version: 1.0 |
|
Name |
Summary |
|
Get web resource |
|
|
Invoke an HTTP request |
|
Name |
Summary |
|
Name |
Summary |
|
|
|
|
Body |
Summary: Get web resource
Description: Retrieves a web resource by issuing an HTTP GET request.
Syntax:
HTTPwithAzureAD.GetFileContent (string path)
Parameters:
|
Name |
Type |
Summary |
Required |
Related Action |
|
path |
string (Resource path) |
File identifier |
True |
Returns:
Type:string(binary)
Summary: File Content
Description: The content of the file.
Summary: Invoke an HTTP request
Description: Invokes an HTTP endpoint.
Syntax:
HTTPwithAzureAD.InvokeHttp (HttpRequest request)
Parameters:
|
Name |
Type |
Summary |
Required |
Related Action |
|
request |
|
Properties of the request |
True |
Returns:
Type:InvokeHttpResponse
Summary: Body
Description: The content of the response.
Summary:
Description: Properties of the request
Properties:
|
Name |
Type |
Summary |
|
method |
string Method |
One of the known HTTP verbs: GET, DELETE, PATCH, POST, PUT. Values: [GET, DELETE, PATCH, POST, PUT] |
|
url |
string Url of the request |
A full or relative URL to the resource. If it is a full URL , it must match the base resource URL set in the connection. |
|
headers |
Headers |
The request headers. |
|
body |
string(byte) Body of the request |
Body of the request when the method requires it. |
Summary: Headers
Description: The request headers.
Properties:
|
Name |
Type |
Summary |
Summary: Body
Description: The content of the response.
Properties:
|
Name |
Type |
Summary |