consent
/api/v1/consent/u18/signup/guardian/verify
POST
/api/v1/consent/u18/signup/guardian/verify
const url = 'https://dpg.example.com/api/v1/consent/u18/signup/guardian/verify';const options = { method: 'POST', headers: {'x-api-key': '<x-api-key>', 'Content-Type': 'application/json'}, body: '{"network":"example","email":"hello@example.com","phoneNumber":"example","otp":"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/consent/u18/signup/guardian/verify \ --header 'Content-Type: application/json' \ --header 'x-api-key: <x-api-key>' \ --data '{ "network": "example", "email": "hello@example.com", "phoneNumber": "example", "otp": "example" }'Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
network
string
email
string format: email
phoneNumber
string
otp
required
string
Examplegenerated
{ "network": "example", "email": "hello@example.com", "phoneNumber": "example", "otp": "example"}Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
verified
required
boolean
Examplegenerated
{ "verified": true}
