Skip to main content
POST
/
auth
/
create_profile
Create User Profile
curl --request POST \
  --url https://public.plai.io/auth/create_profile \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "<string>",
  "name": "<string>"
}
'
{
  "success": true,
  "results": {
    "success": true,
    "id": "<string>",
    "error": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://plai-a079b342.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Request Body

email
string
required
Customers Email Address
name
string
required
Customers Full Name

Response

success
boolean
Indicates that the HTTP response was successful (status code 200 OK).
results
object