freezing-country-74807
04/29/2024, 11:46 AMfreezing-country-74807
04/29/2024, 12:10 PMworkflow.response.status === 200
early-train-33247
04/29/2024, 12:42 PMresponse
will contain a lot of data that you might not want and will just fill up your bot memoryearly-train-33247
04/29/2024, 12:49 PMjs
try {
const makeRequest = await axios.post(...)
console.log("Response to the request was::", makeRequest.data)
workflow.status_code = makeRequest.status
} catch (error) {
console.log("There was an error making the request::", error)
workflow.status_code = 400
}
early-train-33247
04/29/2024, 12:49 PMworkflow.status_code === 200
early-train-33247
04/29/2024, 12:50 PM