> ## Documentation Index
> Fetch the complete documentation index at: https://abrahamdocs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create User

> This endpoint creates the userid

### Request Body Parameters

<ParamField body="title" type="string" required>
  This is the title of the body
</ParamField>

<ParamField body="body" type="string" optional>
  This is the body of the user
</ParamField>

<ParamField body="userid" type="integer" required>
  This is the id of the user
</ParamField>

### Response Body Parameters

<ParamField body="title" type="string">
  This is the title of the body
</ParamField>

<ParamField body="body" type="string">
  This is the body of the user
</ParamField>

<ParamField body="userid" type="integer">
  This is the id of the user
</ParamField>

<RequestExample>
  ```bash Request theme={null}
  curl --request POST \
    --url https://jsonplaceholder.typicode.com/posts \
    --header 'Content-Type: application/json' \
    --data '{
      "title": "foo",
      "body": "bar",
      "userId": "1",
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "title": "foo",
    "body": "bar",
    "userId": 1,
    "id": 101
  }
  ```
</ResponseExample>
