Sample Workflow

This outline is intended to be an example of a transaction from a third party application accessing data for a specific Documentation Field within a STARS Report. In this case the plan is to find out what American University filled in for the description of their Outdoor Program in Tier2-7.

1) Access the Institution

First, let’s use Institutions API to find the institution we’re looking for. For the sake of this example, let’s assume that’s American Unversity.

Endpoint

/api/0.1/institutions/?name=American%20University

Truncated Response

...
{
        ...
        current_report: {
                date_submitted: "2011-01-31",
                rating: "Gold",
                resource_uri: "/api/0.1/submissions/55/",
                version: "1.0"
        },
        name: "American University",
        ...
},
...

2) Access the Submission

Now that we know the URI for the current_report above, we can get closer to the field in question using The Submissions API:

Endpoint

/api/0.1/submissions/55/

Truncated Response

{
        category_submissions: [
                {
                        resource_uri: "/api/0.1/submissions/55/category/1/",
                        title: "Education & Research"
                },
                ...
        ],
        ...
}