NAV
shell ruby python csharp php

StandardizedTestScore

The StandardizedTestScore object

The StandardizedTestScore object looks like this in JSON:

{
    "object": "standardized_test_score",
    "id": 6,
    "test_id": 1,
    "person_id": 12,
    "score": 1500,
    "test_date": "2014-02-26",
    "received_date": "2014-02-26",
    "primary": true,
    "added_at": null,
    "added_by_id": null,
    "sandbox": true
}
Attribute Required Data Type
id Yes int
test_id Yes int
person_id Yes int
score Yes decimal
test_date Yes date
received_date Yes date
primary Yes bool
added_at No datetime
added_by_id No int
sandbox No bool

index (by person)

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X GET
require 'httparty'
response = HTTParty.get(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.get(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores"), Method.Get);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "list",
    "count": 1,
    "results": 1,
    "results_per_page": null,
    "pages": 1,
    "page": 1,
    "offset": 0,
    "has_more": false,
    "data": [
        {
            "object": "standardized_test_score",
            "id": 6,
            "test_id": 1,
            "person_id": 12,
            "score": 1500,
            "test_date": "2014-02-26",
            "received_date": "2014-02-26",
            "primary": true,
            "standardized_test": {
                "object": "standardized_test",
                "id": 1,
                "name": "SAT",
                "sections": [
                    {
                        "object": "standardized_test_section",
                        "id": 1,
                        "test_id": 1,
                        "name": "Math",
                        "minscore": 200,
                        "maxscore": 800,
                        "increment": 10,
                        "optional": false,
                        "version": null,
                        "order_id": null,
                        "used_in_totals_calc": false
                    },
                    {
                        "object": "standardized_test_section",
                        "id": 2,
                        "test_id": 1,
                        "name": "Verbal",
                        "minscore": 200,
                        "maxscore": 800,
                        "increment": 10,
                        "optional": false,
                        "version": null,
                        "order_id": null,
                        "used_in_totals_calc": false
                    }
                ]
            },
            "standardized_test_section_scores": [
                {
                    "object": "standardized_test_section_score",
                    "id": 8,
                    "standardized_test_score_id": 6,
                    "section_id": 2,
                    "person_id": 12,
                    "score": 580,
                    "added_at": null,
                    "added_by_id": null
                }
            ],
            "added_at": null,
            "added_by_id": null
        }
    ],
    "sandbox": true
}

Retrieves all StandardizedTestScore objects tied to a specific Person.

HTTP Request

GET /people/(person)/standardizedtestscores

Parameters

None

Permissions

One of the following roles is required to call this method:

index (by test)

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/standardizedtestscores" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X GET
-d '{
    "standardized_test_id": 1,
    "filter": []
}' \ 
require 'httparty'
response = HTTParty.get(
 'https://yourschool.populiweb.com/api2/standardizedtestscores',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
 body: {
  :standardized_test_id => 1
 }.to_json
)
puts response.body
import requests
response = requests.get(
 'https://yourschool.populiweb.com/api2/standardizedtestscores',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
 json={
  'standardized_test_id': 1
 }
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/standardizedtestscores"), Method.Get);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
request.AddJsonBody(new {
  standardized_test_id = 1
});
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/standardizedtestscores');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode([
  'standardized_test_id' => 1
]));
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "list",
    "count": 2,
    "results": 2,
    "results_per_page": 200,
    "pages": 1,
    "page": 1,
    "offset": 0,
    "has_more": false,
    "data": [
        {
            "object": "standardized_test_score",
            "id": 7,
            "test_id": 1,
            "person_id": 16,
            "score": 1500,
            "test_date": "2014-02-26",
            "received_date": "2014-02-26",
            "primary": true,
            "added_at": null,
            "added_by_id": null,
            "report_data": {
                "person_display_name": "Abby Admin",
                "person_first_name": "Abby",
                "person_last_name": "Admin",
                "row_id": "16_7",
                "math_score": null,
                "math_standardized_test_section_score_id": null,
                "verbal_score": null,
                "verbal_standardized_test_section_score_id": null
            }
        }
    ],
    "sandbox": true
}

Retrieves all StandardizedTestScore objects that match given filter conditions.

HTTP Request

GET /standardizedtestscores

Parameters

Name Required Data Type Description
standardized_test_id Yes int
include_non_primary_scores No bool
filter No mixed See available filter conditions
page No int The page of results to return if more than 200 records are found.

Filter Condition Parameters

These conditions can be used to narrow the results returned.

Name Type
student object_id
date date
composite_score decimal
tag tag
custom_field custom
math decimal
verbal decimal

Permissions

One of the following roles is required to call this method:

create

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X POST
-d '{
    "standardized_test_id": 1,
    "score": "900",
    "test_date": "2000-05-06",
    "received_date": "2000-09-07"
}' \ 
require 'httparty'
response = HTTParty.post(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
 body: {
  :standardized_test_id => 1,
  :score => '900',
  :test_date => '2000-05-06',
  :received_date => '2000-09-07'
 }.to_json
)
puts response.body
import requests
response = requests.post(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
 json={
  'standardized_test_id': 1,
  'score': '900',
  'test_date': '2000-05-06',
  'received_date': '2000-09-07'
 }
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores"), Method.Post);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
request.AddJsonBody(new {
  standardized_test_id = 1,
  score = "900",
  test_date = "2000-05-06",
  received_date = "2000-09-07"
});
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode([
  'standardized_test_id' => 1,
  'score' => '900',
  'test_date' => '2000-05-06',
  'received_date' => '2000-09-07'
]));
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "standardized_test_score",
    "id": 8,
    "test_id": 1,
    "person_id": 12,
    "score": 900,
    "test_date": "2000-05-06T00:00:00-0700",
    "received_date": "2000-09-07T00:00:00-0700",
    "primary": true,
    "standardized_test": {
        "object": "standardized_test",
        "id": 1,
        "name": "SAT",
        "sections": [
            {
                "object": "standardized_test_section",
                "id": 1,
                "test_id": 1,
                "name": "Math",
                "minscore": 200,
                "maxscore": 800,
                "increment": 10,
                "optional": false,
                "version": null,
                "order_id": null,
                "used_in_totals_calc": false
            },
            {
                "object": "standardized_test_section",
                "id": 2,
                "test_id": 1,
                "name": "Verbal",
                "minscore": 200,
                "maxscore": 800,
                "increment": 10,
                "optional": false,
                "version": null,
                "order_id": null,
                "used_in_totals_calc": false
            }
        ]
    },
    "standardized_test_section_scores": [],
    "added_at": "2026-07-25T16:24:11+00:00",
    "added_by_id": 22,
    "sandbox": true
}

Creates a new StandardizedTestScore object.

HTTP Request

POST /people/(person)/standardizedtestscores

Parameters

Name Required Data Type Description
standardized_test_id Yes int
score Yes decimal
test_date Yes date
received_date Yes date
primary No bool

Permissions

One of the following roles is required to call this method:

show

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X GET
require 'httparty'
response = HTTParty.get(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.get(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)"), Method.Get);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "standardized_test_score",
    "id": 6,
    "test_id": 1,
    "person_id": 12,
    "score": 1500,
    "test_date": "2014-02-26",
    "received_date": "2014-02-26",
    "primary": true,
    "standardized_test": {
        "object": "standardized_test",
        "id": 1,
        "name": "SAT",
        "sections": [
            {
                "object": "standardized_test_section",
                "id": 1,
                "test_id": 1,
                "name": "Math",
                "minscore": 200,
                "maxscore": 800,
                "increment": 10,
                "optional": false,
                "version": null,
                "order_id": null,
                "used_in_totals_calc": false
            },
            {
                "object": "standardized_test_section",
                "id": 2,
                "test_id": 1,
                "name": "Verbal",
                "minscore": 200,
                "maxscore": 800,
                "increment": 10,
                "optional": false,
                "version": null,
                "order_id": null,
                "used_in_totals_calc": false
            }
        ]
    },
    "standardized_test_section_scores": [
        {
            "object": "standardized_test_section_score",
            "id": 8,
            "standardized_test_score_id": 6,
            "section_id": 2,
            "person_id": 12,
            "score": 580,
            "added_at": null,
            "added_by_id": null
        }
    ],
    "added_at": null,
    "added_by_id": null,
    "sandbox": true
}

Retrieves a specific StandardizedTestScore object.

HTTP Request

GET /people/(person)/standardizedtestscores/(standardizedtestscore)

Parameters

No additional parameters are needed beyond the ID of the object being requested that appears in the URL.

Permissions

One of the following roles is required to call this method:

update

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X PUT
require 'httparty'
response = HTTParty.put(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.put(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)"), Method.Put);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PUT');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "standardized_test_score",
    "id": 6,
    "test_id": 1,
    "person_id": 12,
    "score": 1500,
    "test_date": "2014-02-26",
    "received_date": "2014-02-26",
    "primary": false,
    "standardized_test": {
        "object": "standardized_test",
        "id": 1,
        "name": "SAT",
        "sections": [
            {
                "object": "standardized_test_section",
                "id": 1,
                "test_id": 1,
                "name": "Math",
                "minscore": 200,
                "maxscore": 800,
                "increment": 10,
                "optional": false,
                "version": null,
                "order_id": null,
                "used_in_totals_calc": false
            },
            {
                "object": "standardized_test_section",
                "id": 2,
                "test_id": 1,
                "name": "Verbal",
                "minscore": 200,
                "maxscore": 800,
                "increment": 10,
                "optional": false,
                "version": null,
                "order_id": null,
                "used_in_totals_calc": false
            }
        ]
    },
    "standardized_test_section_scores": [
        {
            "object": "standardized_test_section_score",
            "id": 8,
            "standardized_test_score_id": 6,
            "section_id": 2,
            "person_id": 12,
            "score": 580,
            "added_at": null,
            "added_by_id": null
        }
    ],
    "added_at": null,
    "added_by_id": null,
    "sandbox": true
}

Updates an existing StandardizedTestScore object.

HTTP Request

PUT /people/(person)/standardizedtestscores/(standardizedtestscore)

Parameters

Name Required Data Type Description
score No decimal
test_date No date
received_date No date
primary No bool

Permissions

One of the following roles is required to call this method:

delete

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X DELETE
require 'httparty'
response = HTTParty.delete(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.delete(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)"), Method.Delete);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "standardized_test_score",
    "id": 6,
    "deleted": true
}

Deletes an existing StandardizedTestScore object.

HTTP Request

DELETE /people/(person)/standardizedtestscores/(standardizedtestscore)

Parameters

No additional parameters are needed beyond the ID of the object to delete that appears in the URL.

Permissions

One of the following roles is required to call this method: