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