Generic HTTP Adapter
This is a generic HTTP adapter that can connect with a variety of different systems using the Python requests library.
Adapter Config
Field | Description | Example |
---|---|---|
| REQUIRED | Host of web server (note: web server is expected to use “https”). The adapter assumes HTTPS is to be used. Unsecure HTTP is not supported. Do not include any path components besides the domain name of the host (use |
|
| OPTIONAL | Username for authenticating with remote host. Mozilla docs: HTTP authentication - Basic authentication scheme |
|
| OPTIONAL | Password for authenticating with remote host. |
|
| OPTIONAL | Certificate used to verify the identity of the remote server. Certificates can come in many filetypes: Password protected |
|
| OPTIONAL | Certificate used to verify the identity of the requestor (Glyue) to the remote server. |
|
| REQUIRED | The number of seconds before the connection should time out. Min 1, max 120, default 60. | 60 |
Field Mappings
Field | Description | Example |
---|---|---|
| REQUIRED | |
|
| REQUIRED | |
|
| OPTIONAL | Setting a To send JSON data, import the | JSON: Form data: |
| OPTIONAL | |
Resulting URL: |
| OPTIONAL | Consider using the Hyphens do not work with References |
|
| OPTIONAL | This overrides the Adapter Config Basic Auth Username and Password and should only be used in special circumstances. For more info, please see the documentation on |
|
| OPTIONAL | If not specified, the adapter dynamically parses the response according to its
Using Using Using |
|
Additional Information:
the adapter attempts to parse the relevant content for the user based on the ‘content-type’ response header. These align with the force_response_content_type
on the field mappings.
Last updated