auth
/api/v1/auth/u18-precheck
POST
/api/v1/auth/u18-precheck
const url = 'https://dpg.example.com/api/v1/auth/u18-precheck';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"network":"example","email":"hello@example.com","phoneNumber":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://dpg.example.com/api/v1/auth/u18-precheck \ --header 'Content-Type: application/json' \ --data '{ "network": "example", "email": "hello@example.com", "phoneNumber": "example" }'Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
network
required
string
email
string format: email
phoneNumber
string
Examplegenerated
{ "network": "example", "email": "hello@example.com", "phoneNumber": "example"}Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
requiresDob
required
boolean
Examplegenerated
{ "requiresDob": true}
