The Blink platform offers various HTTP actions such as GET, POST, PATCH, PUT, DELETE, HEAD, OPTIONS, and GraphQL.
Parameter | Description |
---|---|
Method | Which HTTP method to use in the request. |
URL | The URL to communicate with. |
Body | Request Body. |
Headers | Request Headers should be Name: Value (Accept: application/json) |
Cookies | Request Cookies should be Name=Value (jwt=TOKEN) |
Retry On Rate Limit | If enabled, and when rate limits are reached, the system will retry the HTTP request after the designated time period specified in the rate limit headers or through the use of exponential backoff. |
Disable SSL Enforcement | Enable this option to skip SSL verification of the server’s certificate chain and host name. This may increase security vulnerabilities, but can be useful for testing or when custom verification is employed. |
Parameter | Description |
---|---|
URL | The URL to communicate with. |
Query | GraphQL query. |
Variables | GraphQL query variables. |
Headers | Request Headers to be added to the request in the format Name: Value. For example: Content-Type: application/json . |
Retry On Rate Limit | If enabled, and when rate limits are reached, the system will retry the HTTP request after the designated time period specified in the rate limit headers or through the use of exponential backoff. |
Disable SSL Enforcement | Enable this option to skip SSL verification of the server’s certificate chain and host name. This may increase security vulnerabilities, but can be useful for testing or when custom verification is employed. |
Parameter | Description |
---|---|
Method | Which HTTP method to use in the file upload request. The default value for the request is POST. |
URL | The URL to communicate with. |
Body | Request Body. |
Headers | Request Headers should be Name: Value (Accept: application/json) |
File Identifier | The identifier of the file. You can create a file identifier using the Set File Variable action. |
File Param Name | The parameter name of the file to upload. |
Cookies | Request Cookies should be Name=Value (jwt=TOKEN) |
Retry On Rate Limit | If enabled, and when rate limits are reached, the system will retry the HTTP request after the designated time period specified in the rate limit headers or through the use of exponential backoff. |
Disable SSL Enforcement | Enable this option to skip SSL verification of the server’s certificate chain and host name. This may increase security vulnerabilities, but can be useful for testing or when custom verification is employed. |
X
that isn’t supported by Blink and requires Basic Authentication:
HTTP Basic Authentication
connection with the required credentials.