GET

sims/attendance API

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

Endpoint Path

GET /api/sims/attendance

CURL Example

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

Field Definitions

Field Type
school_id bigint
id varchar
student varchar
date datetime
session varchar
attendance_code varchar
employee varchar
comment text
created_at timestamp
updated_at timestamp

Response Body (Sample)

{
  "data": [
    {
      "school_id": "example_value",
      "id": 101,
      "student": "example_value",
      "date": "example_value",
      "session": "example_value",
      "attendance_code": "example_value",
      "employee": "example_value",
      "comment": "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.