GET

sims/subjects API

Retrieve and manage sims/subjects records from the Apps4Edu sync database.

Endpoint Path

GET /api/sims/subjects

CURL Example

curl "https://api.apps4education.co.uk/api/sims/subjects?api_token=YOUR_TOKEN&school=WONDE_SCHOOL_ID" \
-H "Accept: application/json"
    

Field Definitions

Field Type
school_id bigint
id varchar
mis_id varchar
code varchar
name varchar
active tinyint
mis_created_at datetime
mis_updated_at datetime
created_at timestamp
updated_at timestamp

Response Body (Sample)

{
  "data": [
    {
      "school_id": "example_value",
      "id": 101,
      "mis_id": true,
      "code": "example_value",
      "name": "example_value",
      "active": "example_value",
      "mis_created_at": true,
      "mis_updated_at": true,
      "created_at": "example_value",
      "updated_at": "example_value"
    }
  ]
}
                    

Query Parameters

api_token

Required. Your unique API key must be passed as a query string parameter.

school

Required. The Wonde school ID; rows from other schools are never returned.

page

Optional. Defaults to 1. Used to navigate through paginated results.

per_page

Optional. Rows per page, up to 500 (the default). Follow next_page_url for the rest.