Skip to main content
POST
/
oauth
/
code
Send Code
curl --request POST \
  --url https://api.inprocess.world/api/oauth/code \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "artist@example.com"
}
'
{
  "success": true
}

Body

application/json
email
string<email>
required

The email address to send the one-time verification code to

Example:

"artist@example.com"

Response

Verification code sent successfully

success
boolean

Indicates whether the verification code was sent successfully

Example:

true