Authorization

Authorization takes place after authentication is established. If you're reading this, you probably already know that the purpose of authorization is to establish that a particular user has rights to work with a particular system function or a specific piece of information. This section describes the fundamentals of authorization in connecting with an Ed-Fi API. The core concepts to understand are how tokens and profiles are used.

Tokens & Profiles

With each request made to the API, the token obtained from the authentication process must be passed in an HTTP1 header, like so:

Authorization: Bearer <token_value>

The Ed-Fi API uses this token to identify the caller and determine the permissions that apply to each of the accessible API resources.

Authorization Details

Additionally, different authorization strategies are used for different API Resources.

For many resources, a relationship-based strategy will be used. For example, a SIS vendor will be provided with an API key that is associated with a specific school or local education agency. When accessing the “students” resource, they will only be able to read and write data for students that are registered at their school, or at a school within the associated local education agency.

When implementing an API Client that will be given an API key and secret that uses the relationship-based authorization strategy, it is imperative for the developers to understand some of the hierarchical dependencies for creating and subsequently performing other operations on those resources. 

An example scenario is when a SIS system is using an API key and secret combination that uses the relationship-based authorization strategy, the SIS system will be able to add a student, however the SIS system will not be able to perform any other operation on that resource until it is associated with an education agency that the SIS system API key and secret are associated with. This association is usually done through an enrollment record which is the creation of a studentSchoolAssociation record. Once that relationship is created, then the SIS system will be able to perform other operations on that student record. The same is applicable to staff and parents.

In lieu of listing every possible resource that could be affected by this, it is better to determine if there is an education organization reference on the resource that is created. If there is, this should not be an issue. If no education organization reference is on the resource created, an association record would need to be created to perform other operations on the newly created resource. More information can be found on the API Claim Sets & Resources page.

An ownership-based authorization strategy is used for assessment metadata, enabling multiple callers to create and manage their own metadata.

API Client Profiles

API Profiles enable an Ed-Fi ODS / API platform host to constrain the data exposed from specific resources to meet the needs of individual use cases. When API client is assigned a profile, API responses for resources covered by the profile are severed on a profile specific media-type.  To use a profile, callers can add media-type information to their requests.

For read operations, this takes the form of an Accept header, shown below, which indicates to the server that the caller will accept the profile-based version of the Resource.

Accept: application/vnd.ed-fi.student.nutrition.readable+json

For write operations, the Content-Type header, shown below, indicates to the server that the caller expects their update to apply to the constrained surface area of the Resource as defined by the Profile.

Content-Type: application/vnd.ed-fi.student.nutrition.writable+json

With this explicit communication style, any extra data passed in the message body can (and generally will) be quietly discarded by the server.

API clients that have been assigned only one profile covering the accessed Resource can omit the media-type headers or use standard 'application/json', and the Ed-Fi ODS /API will auto apply the assigned profile. API clients assigned with more than one profile covering the accessed Resource MUST include the media-type headers for one of the applicable profiles. Failing to provide a valid profile header will result in a error response.

Token Info

The Ed-Fi API provides a way to get information about education organizations, namespaces and profiles related to a token.

As previously discussed, the Ed-Fi API uses a token to identify the client and determine associated permissions. The Ed-Fi API uses a relationship-based strategy to authorize access to most resources. Relationship-based access is established by the education organization associated with a given token. You can use the /oauth/token_info endpoint to determine the education organization associated with and the profiles assigned to a token.

The process is relatively straightforward. POST to the /oauth/token_info with an HTTP Authorization header as "Bearer XYZ" where "XYZ" is the access token. The same access token must be sent in the request body in the token parameter. Note that you need an active bearer token for this call, which you can obtain using /oauth/token endpoint. See Authentication for a refresher on how to acquire a token.

The snippet below shows an example POST:

$response = Invoke-RestMethod -Method Post -Uri "https://api.ed-fi.org/v7.1/api/oauth/token_info" -Headers @{ "Authorization" = "Bearer 385432d854194fd5bb09fe08092353b5"} -Body @{ "token" = "385432d854194fd5bb09fe08092353b5"; }
$response | ConvertTo-Json

The snippet below shows a sample response:

{
    "active":  true,
    "client_id":  "RvcohKz9zHI4",
    "namespace_prefixes":  [
                               "uri://ed-fi.org",
                               "uri://gbisd.org",
                               "uri://tpdm.ed-fi.org"
                           ],
    "education_organizations":  [
                                    {
                                        "education_organization_id":  255901,
                                        "name_of_institution":  "Grand Bend ISD",
                                        "type":  "edfi.LocalEducationAgency",
                                        "local_education_agency_id":  255901,
                                        "education_service_center_id":  255950
                                    },
                                    {
                                        "education_organization_id":  2559011,
                                        "name_of_institution":  "Grand Bend ISD Central Office",
                                        "type":  "edfi.OrganizationDepartment",
                                        "local_education_agency_id":  255901,
                                        "education_service_center_id":  255950,
                                        "organization_department_id":  2559011
                                    },
                                    {
                                        "education_organization_id":  255901001,
                                        "name_of_institution":  "Grand Bend High School",
                                        "type":  "edfi.School",
                                        "local_education_agency_id":  255901,
                                        "education_service_center_id":  255950,
                                        "school_id":  255901001
                                    },
                                    {
                                        "education_organization_id":  255901044,
                                        "name_of_institution":  "Grand Bend Middle School",
                                        "type":  "edfi.School",
                                        "local_education_agency_id":  255901,
                                        "education_service_center_id":  255950,
                                        "school_id":  255901044
                                    },
                                    {
                                        "education_organization_id":  255901107,
                                        "name_of_institution":  "Grand Bend Elementary School",
                                        "type":  "edfi.School",
                                        "local_education_agency_id":  255901,
                                        "education_service_center_id":  255950,
                                        "school_id":  255901107
                                    }
                                ],
    "assigned_profiles":  [

                          ]
}


Now that you've seen how to authenticate and authorize a client application, let's look at how to design an elegant solution by trapping errors and leveraging best practices learned from hard-won experience. The Error Handling & Best Practices section walks you through the details.


1 Throughout this documentation, we generally use "HTTP" to describe specific uses of that protocol. As noted elsewhere, the traffic between systems containing production data is always over HTTPS.

Downloads

The following link is a ZIP archive containing a Postman example illustrating the relationship based authorization strategy for a student.

Ed-Fi API Client Developer Postman Example