-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuploadFileAsBase64.js
52 lines (48 loc) · 1.61 KB
/
uploadFileAsBase64.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const fs = require("fs");
const path = require("path");
const axios = require("axios");
const config = require("./config.json");
const FormData = require("form-data");
async function uploadFileAsBase64(filePath, category) {
const form = new FormData();
form.append("file", fs.createReadStream(filePath), {
filename: path.basename(filePath),
contentType: "application/pdf", // Adjust based on your file type
});
form.append("type", "receipt");
form.append("expense_category", ""+category);
try {
const response = await axios.post(
"https://app.join-jump.com/api/expenses-api/v3/attachments",
form,
{
headers: {
Authorization: `Bearer ${config.USER_TOKEN}`,
"x-jump-offer-id": 'eaf176c2-c23d-4685-abe1-90dd6d5dd8b4',
...form.getHeaders()
// 'x-datadog-origin': 'rum',
// 'x-datadog-parent-id': '5009250776774536058',
// 'x-datadog-sampling-priority': '1',
// 'x-datadog-trace-id': '3103076597450115206',
},
}
);
if (response.status === 200) {
console.log("File uploaded successfully:", filePath);
console.log("File Id:", response.data.id);
return response.data.id;
}
throw new Error(
`Failed to upload file. Status: ${response.status}, StatusText: ${response.statusText}`
);
} catch (error) {
console.error(
"Error during file upload:",
filePath,
"; Error:",
error.message || error
);
return null; // Return null to indicate failure, maintaining the expectation of the calling function
}
}
module.exports = uploadFileAsBase64;