api 추가

This commit is contained in:
focp212@naver.com
2025-11-12 11:17:18 +09:00
parent 8924019980
commit eef0152526
8 changed files with 138 additions and 5 deletions

View File

@@ -61,6 +61,10 @@ export const API_URL_TRANSACTION = {
// POST: 현금영수증 엑셀 다운로드
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/cash-receipt/excel/download`;
},
cashReceiptReceiptSendEmail: () => {
// POST: 현금영수증 이메일 발송
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/cash-receipt/receipt/send-email`;
},
/* Escro Management - 에스크로 API */
escrowList: () => {

View File

@@ -28,4 +28,8 @@ export const API_URL_VAT_RETURN = {
// POST: 세금계산서 엑셀 다운로드
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/vat-return/download/excel`;
},
vatReturnTaxInvoiceSendEmail: () => {
// POST: 세금계산서 이메일 발송
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/vat-return/tax-invoice/send-email`;
},
};