eligius
    Preparing search index...

    Variable httpPostConst

    httpPost: TOperation<
        IHttpPostOperationData,
        Omit<IHttpPostOperationData, "url" | "body" | "headers">,
    > = ...

    Performs an HTTP POST request to the specified URL.

    Operation data with response (parsed JSON) and status (HTTP status code)

    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