Skip to main content
POST
/
api
/
v2
/
auth
/
signup-otp
Create a api user on OTP
curl --request POST \
  --url https://sandbox.killb.app/api/v2/auth/signup-otp \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>",
  "token": "<string>"
}
'
{
  "id": "<string>",
  "customerId": "<string>",
  "email": "<string>",
  "active": true,
  "deletedAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Body

application/json
email
string
required
password
string
required
token
string
required

Response

id
string
required
customerId
string
required
email
string
required
active
boolean
required
deletedAt
string<date-time>
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required