2021-12-17 04:58:15 -06:00
|
|
|
import { doRequest } from '@server/helpers/requests'
|
2018-10-23 04:38:48 -05:00
|
|
|
|
2021-11-02 13:11:20 -05:00
|
|
|
export function makePOSTAPRequest (url: string, body: any, httpSignature: any, headers: any) {
|
2018-10-23 04:38:48 -05:00
|
|
|
const options = {
|
2021-03-08 07:24:11 -06:00
|
|
|
method: 'POST' as 'POST',
|
2018-10-23 04:38:48 -05:00
|
|
|
json: body,
|
|
|
|
httpSignature,
|
|
|
|
headers
|
|
|
|
}
|
|
|
|
|
2021-03-08 07:24:11 -06:00
|
|
|
return doRequest(url, options)
|
2018-10-23 04:38:48 -05:00
|
|
|
}
|