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>"
  }
}

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