#!/bin/bash

input_file="add_rows_by_pages.json"
output_file="add_rows_by_pages_report.xlsx"
error_file="add_rows_by_pages_error.json"

response=$(curl --request POST --data-binary @"$input_file" http://localhost:8886/excel_report_json --output "$output_file" --write-out "%{http_code}")

if [ "$response" -ne 200 ]; then
  echo "Error while executing the request. Response code: $response"
  mv "$output_file" "$error_file"
else
  echo "The request was executed successfully. Response code: $response"
fi