http.post

Sends a HTTP POST request to any URL using Axios.

Parameters

url: string Target URL
data: any Data to be sent to the target URL
config?: object Axios HTTP configuration for sending HTTP headers, setting up a proxy, etc. (Optional)

Returns

Promise that is resolved with an Axios response object.

The returned data is in the 'data' property of the response.

Examples

Post some data to create a new entity using a REST API endpoint
module.exports = async function(payload, actions, context) {
	const { data } = await actions.http.post(
		'http://my.api.com/things',
		{ a: 1 }
	);

	console.log('created a thing: { a: 1 }', data);
}