From f76e046a9488ff39509f5fe3cc237330ecd9958f Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Fri, 18 Sep 2020 15:24:04 +0200 Subject: [PATCH] The propoer header regarding json content type is Content-Type, not ContentType --- DNS-API-Dev-Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DNS-API-Dev-Guide.md b/DNS-API-Dev-Guide.md index 9f0c74a..49854e7 100644 --- a/DNS-API-Dev-Guide.md +++ b/DNS-API-Dev-Guide.md @@ -193,7 +193,7 @@ Your HTTP method call may require additional headers for Authorization, ContentT mycredentials="$(printf "%s" "$myusername:$mypassword" | _base64)" export _H1="Authorization: Basic $mycredentials" - export _H2="ContentType: application/json" + export _H2="Content-Type: application/json" ... ```