kakaopay.api.js 657 Bytes
Newer Older
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
import axios from "axios";
import { baseUrl } from "../utils/baseUrl.js";

const approveReq = async (info) => {
    const url = `${baseUrl}/api/kakaopay/test/single`;
    const { data } = await axios.post(url,info);
    return data
}

const approveSuccess = async (info) => {
    const url = `${baseUrl}/api/kakaopay/success`;
    const { data } = await axios.post(url,info);
    return data
}

const paymentCancel = async (info) => {
    const url = `${baseUrl}/api/kakaopay/cancel`;
    const { data } = await axios.post(url,info);
    return data
}

const kakaopayApi = {
    approveReq,
    approveSuccess,
    paymentCancel
}
export default kakaopayApi