mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-12 01:47:50 +09:00
서비스관리 / 알림톡 템플릿관리 추가
This commit is contained in:
27
frontend/src/modules/riskMgt/service/riskMgtApi.js
Normal file
27
frontend/src/modules/riskMgt/service/riskMgtApi.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import httpClient from '@/common/http-client'
|
||||
|
||||
// HUBEZ_BO_API_11004 발신번호 차단 수정
|
||||
const updateIntrcp = (params) => {
|
||||
return httpClient.post('/api/v1/bo/riskMgt/sendNum/updateIntrcp', params, { withCredentials: false });
|
||||
}
|
||||
|
||||
// HUBEZ_BO_API_11004 발신번호 차단 상세 정보 조회
|
||||
const intrcpDetail = (params) => {
|
||||
return httpClient.post('/api/v1/bo/riskMgt/sendNum/intrcpDetail', params, { withCredentials: false });
|
||||
}
|
||||
// HUBEZ_BO_API_11003 발신번호 차단 신규 등록
|
||||
const insertIntrcp = (params) => {
|
||||
return httpClient.post('/api/v1/bo/riskMgt/sendNum/insertIntrcp', params, { withCredentials: false });
|
||||
}
|
||||
|
||||
const deleteIntrcp = (params) => {
|
||||
return httpClient.post('/api/v1/bo/riskMgt/sendNum/deleteIntrcp', params, { withCredentials: false });
|
||||
}
|
||||
|
||||
|
||||
export default {
|
||||
updateIntrcp,
|
||||
intrcpDetail,
|
||||
insertIntrcp,
|
||||
deleteIntrcp
|
||||
}
|
||||
Reference in New Issue
Block a user