import axios from 'api'; import { ErrorResponseHandler } from 'api/ErrorResponseHandler'; import { AxiosError } from 'axios'; import { ErrorResponse, SuccessResponse } from 'types/api'; import { PayloadProps, Props } from 'types/api/channels/createMsTeams'; const testMsTeams = async ( props: Props, ): Promise | ErrorResponse> => { try { const response = await axios.post('/testChannel', { name: props.name, msteams_configs: [ { send_resolved: true, webhook_url: props.webhook_url, title: props.title, text: props.text, }, ], }); return { statusCode: 200, error: null, message: 'Success', payload: response.data.data, }; } catch (error) { return ErrorResponseHandler(error as AxiosError); } }; export default testMsTeams;