Skilljar Domains > Catalog Page > Page Items (Classic) API
The Domains > Catalog Page > Page Items (Classic) API from Skilljar — 2 operation(s) for domains > catalog page > page items (classic).
The Domains > Catalog Page > Page Items (Classic) API from Skilljar — 2 operation(s) for domains > catalog page > page items (classic).
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/skilljar-domains-catalog-page-page-items-classic-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Skilljar Assets Domains > Catalog Page > Page Items (Classic) Domains > Catalog Page > Page Items (Classic) API
version: 1.0.0
description: 'The Skilljar API provides comprehensive access to our customer education platform, enabling you to programmatically manage courses, users, enrollments, and more.
This interactive documentation is automatically generated from our codebase and stays current with the latest features and endpoints.
## Getting Started
New to the Skilljar API? Check out these essential resources:
- **[API Getting Started Guide](https://support.gainsight.com/Skilljar/Develop_and_Customize/API/Getting_started_with_the_Skilljar_API)** - Authentication, basic concepts, and your first API call
- **[Token-based SSO](https://support.gainsight.com/Skilljar/Develop_and_Customize/Single_Sign_on_(SSO)/Configuring_Token-Based_Single_Sign-On_(SSO))** - Seamlessly integrate user authentication
- **[Webhooks](https://support.gainsight.com/Skilljar/Develop_and_Customize/API/Using_Webhooks_API)** - Real-time notifications for platform events
'
servers:
- url: https://api.skilljar.com/v1/
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Domains > Catalog Page > Page Items (Classic)
paths:
/v1/domains/{domain_name}/catalog-pages/{catalog_page_id}/classic-page-items:
get:
operationId: domains_catalog_pages_classic_page_items_list
description: Retrieve a paginated list of all catalog page items for the specified catalog page.
parameters:
- in: path
name: catalog_page_id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
- in: path
name: domain_name
schema:
type: string
pattern: ^[-:\.0-9a-z]+$
required: true
- name: page
required: false
in: query
description: A page number within the paginated result set.
schema:
type: integer
tags:
- Domains > Catalog Page > Page Items (Classic)
security:
- OrganizationApiKey: []
- tokenAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedClassicCatalogPageItemList'
description: ''
post:
operationId: domains_catalog_pages_classic_page_items_create
description: Create a new catalog page item within the specified catalog page. Only one item can be added at a time.
parameters:
- in: path
name: catalog_page_id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
- in: path
name: domain_name
schema:
type: string
pattern: ^[-:\.0-9a-z]+$
required: true
tags:
- Domains > Catalog Page > Page Items (Classic)
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemRequest'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemRequest'
multipart/form-data:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemRequest'
security:
- OrganizationApiKey: []
- tokenAuth: []
responses:
'201':
content:
application/json:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItem'
description: ''
/v1/domains/{domain_name}/catalog-pages/{catalog_page_id}/classic-page-items/{id}:
get:
operationId: domains_catalog_pages_classic_page_items_retrieve
description: Retrieve detailed information for a specific catalog page item within the catalog page.
parameters:
- in: path
name: catalog_page_id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
- in: path
name: domain_name
schema:
type: string
pattern: ^[-:\.0-9a-z]+$
required: true
- in: path
name: id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
tags:
- Domains > Catalog Page > Page Items (Classic)
security:
- OrganizationApiKey: []
- tokenAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItem'
description: ''
put:
operationId: domains_catalog_pages_classic_page_items_update
description: Update the order of a specific catalog page item within the catalog page.
parameters:
- in: path
name: catalog_page_id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
- in: path
name: domain_name
schema:
type: string
pattern: ^[-:\.0-9a-z]+$
required: true
- in: path
name: id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
tags:
- Domains > Catalog Page > Page Items (Classic)
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemOrderUpdateRequest'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemOrderUpdateRequest'
multipart/form-data:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemOrderUpdateRequest'
security:
- OrganizationApiKey: []
- tokenAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemOrderUpdate'
description: ''
patch:
operationId: domains_catalog_pages_classic_page_items_partial_update
description: Update the order of a specific catalog page item within the catalog page
parameters:
- in: path
name: catalog_page_id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
- in: path
name: domain_name
schema:
type: string
pattern: ^[-:\.0-9a-z]+$
required: true
- in: path
name: id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
tags:
- Domains > Catalog Page > Page Items (Classic)
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PatchedClassicCatalogPageItemOrderUpdateRequest'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/PatchedClassicCatalogPageItemOrderUpdateRequest'
multipart/form-data:
schema:
$ref: '#/components/schemas/PatchedClassicCatalogPageItemOrderUpdateRequest'
security:
- OrganizationApiKey: []
- tokenAuth: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ClassicCatalogPageItemOrderUpdate'
description: ''
delete:
operationId: domains_catalog_pages_classic_page_items_destroy
description: Delete a catalog page item from the catalog page.
parameters:
- in: path
name: catalog_page_id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
- in: path
name: domain_name
schema:
type: string
pattern: ^[-:\.0-9a-z]+$
required: true
- in: path
name: id
schema:
type: string
pattern: ^[0-9a-z]+$
required: true
tags:
- Domains > Catalog Page > Page Items (Classic)
security:
- OrganizationApiKey: []
- tokenAuth: []
responses:
'204':
description: No response body
components:
schemas:
Type62bEnum:
enum:
- CATALOG_PAGE
- COURSE_SERIES
- PUBLISHED_COURSE
- PLAN
- PUBLISHED_PATH
type: string
description: '* `CATALOG_PAGE` - CATALOG_PAGE
* `COURSE_SERIES` - COURSE_SERIES
* `PUBLISHED_COURSE` - PUBLISHED_COURSE
* `PLAN` - PLAN
* `PUBLISHED_PATH` - PUBLISHED_PATH'
ClassicCatalogPageItemOrderUpdateRequest:
type: object
description: Serializer for updating the order of existing CatalogPageItem
properties:
order:
type: integer
minimum: 1
PatchedClassicCatalogPageItemOrderUpdateRequest:
type: object
description: Serializer for updating the order of existing CatalogPageItem
properties:
order:
type: integer
minimum: 1
ClassicCatalogPageItemRequest:
type: object
description: Serializer for Legacy CatalogPageItem
properties:
order:
type: integer
minimum: 1
item_catalog_page_id:
type: string
minLength: 1
item_published_path_id:
type: string
minLength: 1
item_published_course_id:
type: string
minLength: 1
item_plan_id:
type: string
minLength: 1
ClassicCatalogPageItemOrderUpdate:
type: object
description: Serializer for updating the order of existing CatalogPageItem
properties:
id:
type: string
readOnly: true
order:
type: integer
minimum: 1
type:
allOf:
- $ref: '#/components/schemas/Type62bEnum'
readOnly: true
item_catalog_page_id:
type: string
readOnly: true
item_published_path_id:
type: string
readOnly: true
item_published_course_id:
type: string
readOnly: true
item_plan_id:
type: string
readOnly: true
PaginatedClassicCatalogPageItemList:
type: object
required:
- count
- results
properties:
count:
type: integer
example: 123
next:
type:
- string
- 'null'
format: uri
example: http://api.example.org/accounts/?page=4
previous:
type:
- string
- 'null'
format: uri
example: http://api.example.org/accounts/?page=2
results:
type: array
items:
$ref: '#/components/schemas/ClassicCatalogPageItem'
ClassicCatalogPageItem:
type: object
description: Serializer for Legacy CatalogPageItem
properties:
id:
type: string
readOnly: true
order:
type: integer
minimum: 1
type:
allOf:
- $ref: '#/components/schemas/Type62bEnum'
readOnly: true
item_catalog_page_id:
type: string
item_published_path_id:
type: string
item_published_course_id:
type: string
item_plan_id:
type: string
securitySchemes:
OrganizationApiKey:
type: http
scheme: basic
description: API key authentication using HTTP Basic Auth. Use your API key as the username and leave password empty.
tokenAuth:
type: http
scheme: bearer