Disable Payment Link

Update an existing payment link on your Terraswitch account.

PUT {{ BASE_URL }}/v1/corporate/disable-payment/{{slug}}
import Axios from 'axios';

// set the api url
const API_URL = `${BASE_URL}/v1/corporate/disable-payment/${slug}`;

// make request using axios
Axios({
    method: "POST",
    url: `${API_URL}`,
    headers: {
        lg: 'en',
        ch: 'web'
        Authorization: `Bearer ${API_KEY}`,
        'Content-Type': 'application/json',
    }
}).then((resp) => {
    console.log(resp)
}).catch((err) => {
    console.log(err)
})

Last updated