Skip to main content
PATCH
/
goals
/
{studentId}
/
courses
/
{goalId}
Update an atomic course goal
curl --request PATCH \
  --url https://api.alpha-1edtech.ai/goals/{studentId}/courses/{goalId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "pacing": {
    "endDate": "<string>"
  }
}
'
{
  "course": {
    "course": {
      "id": "<string>",
      "title": "<string>",
      "subject": "<string>"
    },
    "goal": {
      "id": "<string>",
      "target": {
        "value": "<string>"
      },
      "pacing": {
        "endDate": "<string>"
      }
    },
    "progress": {
      "courseId": "<string>",
      "courseTitle": "<string>",
      "pctComplete": 123,
      "pctCompleteApp": 123,
      "pctCompleteLessons": 123,
      "pctCompleteXP": 123,
      "totalXP": 123,
      "earnedXP": 123,
      "remainingXP": 123,
      "totalUnits": 123,
      "completedUnits": 123,
      "remainingUnits": 123,
      "totalLessons": 123,
      "completedLessons": 123,
      "remainingLessons": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.timeback.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

studentId
string
required

Student sourcedId

goalId
string
required

Course goal identifier

Body

application/json
target
object
pacing
object

Response

Course goal updated

course
object
required