---
title: "Upload Courses"
method: POST
path: "/curricular-skills/courses"
tags: ["Courses"]
---

# Upload Courses

`POST /curricular-skills/courses`

The single course creation endpoint provides functionality for creating individual courses, one-at-a-time. You may create a single course by making a POST request with a valid course object to the `/curricular-skills/courses` endpoint. The course object must contain, at the minimum, a `site`, `title`, and a boolean value for `isPublished`. `id` will be ignored, if provided, as it is automatically generated and cannot be changed.

## Query parameters

- `expand` string

## Request body

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

## Response `201`

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.

---

[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/revisions/fc66b9877391/schema)
