File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ jobs:
104104 run : |
105105 echo "Sending JSON payload to API"
106106
107- response=$(curl -s -X POST "$API_BASE/polling " -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" --data-binary "@$JSON_PAYLOAD_PATH")
107+ response=$(curl -s -X POST "$API_BASE/dataConnector " -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" --data-binary "@$JSON_PAYLOAD_PATH")
108108
109109 result_status=$(echo "$response" | jq -r '.status // empty')
110110 message=$(echo "$response" | jq -r '.message // "No message provided"')
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ jobs:
262262 - name : POST _CL payload
263263 if : env.JSON__CL_PATH != 'empty'
264264 run : |
265- response=$(curl -s -X POST "$API_BASE/cl " -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" --data-binary "@$JSON__CL_PATH")
265+ response=$(curl -s -X POST "$API_BASE/table_CL " -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" --data-binary "@$JSON__CL_PATH")
266266 result_status=$(echo "$response" | jq -r '.status // empty')
267267 message=$(echo "$response" | jq -r '.message // "No message provided"')
268268 if [ "$result_status" != "passed" ]; then
You can’t perform that action at this time.
0 commit comments