PUT /api/interaction

PUT /api/interaction
application/json

Body Required

Responses

PUT /api/interaction
curl \
 -X PUT https://[tenant_id].logto.app/api/interaction \
 -H "Content-Type: application/json" \
 -d '{"event":"SignIn","identifier":{"username":"string","password":"string"},"profile":{"username":"string","email":"string","phone":"string","connectorId":"string","password":"string"}}'
Request example
{
  "event": "SignIn",
  "identifier": {
    "username": "string",
    "password": "string"
  },
  "profile": {
    "username": "string",
    "email": "string",
    "phone": "string",
    "connectorId": "string",
    "password": "string"
  }
}