GET
sims/classemployees API
Retrieve and manage sims/classemployees records from the Apps4Edu sync database.
Endpoint Path
GET
/api/sims/classemployees
CURL Example
curl "https://api.apps4education.co.uk/api/sims/classemployees?api_token=YOUR_TOKEN&school=WONDE_SCHOOL_ID" \
-H "Accept: application/json"
Field Definitions
| Field | Type |
|---|---|
school_id
|
bigint |
class_id
|
varchar |
employee_id
|
varchar |
created_at
|
timestamp |
updated_at
|
timestamp |
Response Body (Sample)
{ "data": [ { "school_id": "example_value", "class_id": "example_value", "employee_id": "example_value", "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.