rohan13's picture
Flowise Changes
4114d85
raw
history blame contribute delete
353 Bytes
import client from './client'
const getAllAPIKeys = () => client.get('/apikey')
const createNewAPI = (body) => client.post(`/apikey`, body)
const updateAPI = (id, body) => client.put(`/apikey/${id}`, body)
const deleteAPI = (id) => client.delete(`/apikey/${id}`)
export default {
getAllAPIKeys,
createNewAPI,
updateAPI,
deleteAPI
}