<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@workgrid/client](./client.md) &gt; [HttpClient](./client.httpclient.md) &gt; [post](./client.httpclient.post.md)

## HttpClient.post() method

> This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
> 

Make an http post request

<b>Signature:</b>

```typescript
post(url: string, data?: unknown, config?: AxiosRequestConfig): Promise<AxiosResponse<any>>;
```

## Parameters

|  Parameter | Type | Description |
|  --- | --- | --- |
|  url | string | The request url |
|  data | unknown | The request payload |
|  config | AxiosRequestConfig | Additional request config |

<b>Returns:</b>

Promise&lt;AxiosResponse&lt;any&gt;&gt;

The response data

