Post Request

Send a post request to a location of choice

PropTypeDefault
url
string
none
body
string
none
const { RequestClient } = require('@cordxapp/request');
const req = new RequestClient();
 
return req.post({
  url: url,
  body: body
});

Last updated on