From 5e30e204fcd4477830f5b9d2e91da5fc9645b5f1 Mon Sep 17 00:00:00 2001 From: Frank Jogeleit Date: Fri, 10 Dec 2021 17:44:42 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5da0c7e..fa3acb2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ jobs: |url | Request URL | _required_ Field | |method | Request Method| POST | |contentType | Request ContentType| application/json | -|data | Request Body Content as JSON String (or key=value pairs separated by '&' for form-urlencoded content), only for POST / PUT / PATCH Requests | '{}' | +|data | Request Body Content:
- text content like JSON or XML
- key=value pairs separated by '&' and contentType: application/x-www-form-urlencoded

only for POST / PUT / PATCH Requests | '{}' | |files | Map of key / absolute file paths send as multipart/form-data request to the API, if set the contentType is set to multipart/form-data, values provided by data will be added as additional FormData values, nested objects are not supported. **Example provided in the _test_ Workflow of this Action** | '{}' | |timeout| Request Timeout in ms | 5000 (5s) | |username| Username for Basic Auth ||