---
title: "Update Course"
method: PATCH
path: "/curricular-skills/courses/{id}"
tags: ["Courses By ID"]
---

# Update Course

`PATCH /curricular-skills/courses/{id}`

The PATCH method will allow you to update the existing course with the provided JSON request body. Note that `site`,`id`, `createdAt`, and `updatedAt` are not valid request body attributes as they cannot be changed.

## Query parameters

- `expand` string

## Request body

- CoursePatchRequest
  - `data` object, required
    - `type` string, required
    - `attributes` object, required
      - `skills` union
        - string[]
        - object[]
          - `id` string, required
          - `isLearningObjective` boolean
      - `courseId` string
      - `title` string
      - `description` string
      - `credits` number, nullable
      - `url` string
      - `syllabusText` string
      - `learningObjectiveText` string
      - `isPublished` boolean

## Response `200`

OK

- SingleCourseResponse
  - `data` object, required
    - `type` string, required
    - `id` string, required
    - `attributes` object, required
      - `skills` string
      - `title` string, required
      - `site` string, required
      - `courseId` string
      - `description` string
      - `credits` number
      - `url` string
      - `syllabusText` string
      - `learningObjectiveText` string
      - `isPublished` boolean, required
      - `createdAt` string
      - `updatedAt` string

## Other responses

- `400` — bad request
- `403` — You don't have access to traveltime data.
- `404` — requested resource not found

---

[API](https://skmtc.net/lightcast/apis/alumni-pathways-2-0.md) · [All operations](https://skmtc.net/lightcast/apis/alumni-pathways-2-0/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lightcast/alumni-pathways-2-0/versions/fc66b9877391/schema)
