NAV
shell ruby python csharp php

StandardizedTestSectionScore

The StandardizedTestSectionScore object

The StandardizedTestSectionScore object looks like this in JSON:

{
    "object": "standardized_test_section_score",
    "id": 6,
    "standardized_test_score_id": null,
    "section_id": 1,
    "person_id": 1,
    "score": 540,
    "added_at": null,
    "added_by_id": null,
    "sandbox": true
}
Attribute Required Data Type
id Yes int
standardized_test_score_id No int
section_id Yes int
person_id Yes int
score Yes decimal
added_at No datetime
added_by_id No int
sandbox No bool

index

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections" \
-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)/sections',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.get(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections',
 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)/sections"), 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)/sections');
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_section_score",
            "id": 8,
            "standardized_test_score_id": 6,
            "section_id": 2,
            "person_id": 12,
            "score": 580,
            "standardized_test_section": {
                "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
            },
            "added_at": null,
            "added_by_id": null
        }
    ],
    "sandbox": true
}

Retrieves all StandardizedTestSectionScore objects tied to a specific Person.

HTTP Request

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

Parameters

None

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/(standardizedtestscore)/sections" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X POST
-d '{
    "standardized_test_section_id": 1,
    "score": "455"
}' \ 
require 'httparty'
response = HTTParty.post(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
 body: {
  :standardized_test_section_id => 1,
  :score => '455'
 }.to_json
)
puts response.body
import requests
response = requests.post(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
 json={
  'standardized_test_section_id': 1,
  'score': '455'
 }
)
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)/sections"), Method.Post);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
request.AddJsonBody(new {
  standardized_test_section_id = 1,
  score = "455"
});
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)/sections');
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_section_id' => 1,
  'score' => '455'
]));
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "standardized_test_section_score",
    "id": 9,
    "standardized_test_score_id": 6,
    "section_id": 1,
    "person_id": 12,
    "score": 455,
    "standardized_test_section": {
        "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
    },
    "added_at": "2026-07-25T16:24:11+00:00",
    "added_by_id": 22,
    "sandbox": true
}

Creates a new StandardizedTestSectionScore object.

HTTP Request

POST /people/(person)/standardizedtestscores/(standardizedtestscore)/sections

Parameters

Name Required Data Type Description
standardized_test_section_id Yes int
score Yes decimal

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)/sections/(standardizedtestsectionscore)" \
-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)/sections/(standardizedtestsectionscore)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.get(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections/(standardizedtestsectionscore)',
 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)/sections/(standardizedtestsectionscore)"), 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)/sections/(standardizedtestsectionscore)');
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_section_score",
    "id": 6,
    "standardized_test_score_id": null,
    "section_id": 1,
    "person_id": 1,
    "score": 540,
    "standardized_test_section": {
        "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
    },
    "added_at": null,
    "added_by_id": null,
    "sandbox": true
}

Retrieves a specific StandardizedTestSectionScore object.

HTTP Request

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

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)/sections/(standardizedtestsectionscore)" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X PUT
-d '{
    "score": "465"
}' \ 
require 'httparty'
response = HTTParty.put(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections/(standardizedtestsectionscore)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
 body: {
  :score => '465'
 }.to_json
)
puts response.body
import requests
response = requests.put(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections/(standardizedtestsectionscore)',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
 json={
  'score': '465'
 }
)
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)/sections/(standardizedtestsectionscore)"), Method.Put);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
request.AddJsonBody(new {
  score = "465"
});
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)/sections/(standardizedtestsectionscore)');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode([
  'score' => '465'
]));
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "standardized_test_section_score",
    "id": 9,
    "standardized_test_score_id": 6,
    "section_id": 1,
    "person_id": 12,
    "score": 465,
    "standardized_test_section": {
        "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
    },
    "added_at": "2026-07-25T16:24:11+00:00",
    "added_by_id": 22,
    "sandbox": true
}

Updates an existing StandardizedTestSectionScore object.

HTTP Request

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

Parameters

Name Required Data Type Description
score Yes decimal

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)/sections/(standardizedtestsectionscore)" \
-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)/sections/(standardizedtestsectionscore)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.delete(
 'https://yourschool.populiweb.com/api2/people/(person)/standardizedtestscores/(standardizedtestscore)/sections/(standardizedtestsectionscore)',
 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)/sections/(standardizedtestsectionscore)"), 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)/sections/(standardizedtestsectionscore)');
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_section_score",
    "id": 7,
    "deleted": true
}

Deletes an existing StandardizedTestSectionScore object.

HTTP Request

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

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: