1
0

fixed rest on cpp; added batch endpoint

This commit is contained in:
Jose
2025-05-10 07:43:30 +02:00
parent 0ce48c18e2
commit 8dc2787b80
10 changed files with 300 additions and 260 deletions

View File

@@ -2,5 +2,5 @@
#include <HTTPClient.h>
void getRequest(HTTPClient &httpClient, const String url, String &response);
void postRequest(HTTPClient &httpClient, const String url, const String &payload, String &response);
void getRequest(const String url, String &response);
void postRequest(const String url, const String &payload, String &response);