mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 01:16:57 +00:00
25 lines
644 B
TypeScript
25 lines
644 B
TypeScript
|
|
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/SAML/postDomain';
|
||
|
|
|
||
|
|
const postDomain = async (
|
||
|
|
props: Props,
|
||
|
|
): Promise<SuccessResponse<PayloadProps> | ErrorResponse> => {
|
||
|
|
try {
|
||
|
|
const response = await axios.post(`/domains`, props);
|
||
|
|
|
||
|
|
return {
|
||
|
|
statusCode: 200,
|
||
|
|
error: null,
|
||
|
|
message: response.data.status,
|
||
|
|
payload: response.data.data,
|
||
|
|
};
|
||
|
|
} catch (error) {
|
||
|
|
return ErrorResponseHandler(error as AxiosError);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
export default postDomain;
|