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

# Create User Profile

> This endpoint allows the creation of a new user profile on our platform. By providing the necessary user information, you can onboard new users into the system, enabling them to access and utilize platform features and services.

## Request Body

<ParamField body="email" type="string" required>
  Customers Email Address
</ParamField>

<ParamField body="name" type="string" required>
  Customers Full Name
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates that the HTTP response was successful (status code 200 OK).
</ResponseField>

<ResponseField name="results" type="object">
  <Expandable title="Results">
    <ResponseField name="success" type="boolean">
      Indicates whether the specific operation or API action was
      successful.
    </ResponseField>

    <ResponseField name="id" type="string">
      Unique User id (you need to pass this id in all requests)
    </ResponseField>

    <ResponseField name="error" type="string">
      Error message if something went wrong
    </ResponseField>
  </Expandable>
</ResponseField>
