Const
Performs an HTTP POST request to the specified URL.
Operation data with response (parsed JSON) and status (HTTP status code)
response
status
const result = await httpPost({ url: 'https://api.example.com/users', body: { name: 'John', email: 'john@example.com' }, headers: { 'Content-Type': 'application/json' }});// result.response = { id: 123, name: 'John', ... }// result.status = 201 Copy
const result = await httpPost({ url: 'https://api.example.com/users', body: { name: 'John', email: 'john@example.com' }, headers: { 'Content-Type': 'application/json' }});// result.response = { id: 123, name: 'John', ... }// result.status = 201
Performs an HTTP POST request to the specified URL.