Age Gate Module
Age Gate Flow Diagrams
Simple Age Gate Flow Diagram
Age Gate Flow Diagram (with Age Recheck)
Age Gate MultiUser Flow Diagram
Age Gate SDK example
Privo.ageGate.getStatus(userIdentifier) { s in
event = s
}
// ...
let data = CheckAgeData(
userIdentifier: userIdentifier,
birthDateYYYYMMDD: birthDate,
countryCode: country
)
Privo.ageGate.run(data) { s in
event = s
}
// ...
Privo.ageGate.recheck(data) { s in
event = s
}
Sample SDK Response:
{
"id": "861dc238-...-c1dfe",
"status": "Allowed",
"extUserId": "9ede0f0-...a78",
//optional
"countryCode": "US"
//optional
}