Access control¶
Information about schools can be sensitive. Potential bad actors could use school data for malicious purposes and terrorism. How school data is shared outside of the API is important.
MagicBox uses Auth0 to authenticate users and assign them roles.
Tokens¶
Auth0 creates tokens for users authenticating to the API. A user may make a request with their token like this.
curl -i localhost:8000/api/v1/schools/countries/GL -H "Token: Bearer xxxxxxxxxx9gek6Z5Ilnkx"
After receiving the token, UNICEF reviews the applicant before privileges are granted. Once our API receives the token, we pass it to Auth0 which returns the user’s profile and roles.

Rules¶
General rules can be assigned by email domain via Auth0.

Code that implements checking for the email domain of a user
See also
See Data ingestion rules for more information about data rules.