Reorder product content
/products/{product_id}/content/orderSets the display order of the product's top-level content.
The ids list may mix module IDs (mod_) and lesson IDs (les_), and must contain exactly the complete set of root modules and lessons that do not belong to any module. If the supplied set does not match, the request is rejected.
Send the product's current ETag value in the If-Match header to avoid overwriting a newer version.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Path Parameters
Header Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X PUT "https://example.com/products/string/content/order" \ -H "Content-Type: application/json" \ -d '{ "ids": [ "string" ] }'{ "data": [ { "id": "string", "kind": "module", "name": "string", "object": "content_entry", "position": 0, "status": "published" } ], "page": { "limit": 1, "next_cursor": "string", "prev_cursor": "string" }}List product content GET
Lists the top-level content of a product: its root modules and the lessons that do not belong to any module, in their display order.
Copy a product POST
Starts an asynchronous copy of the product, with the given `name`, into the target showcase in the same account. The response returns an operation. Track it through the URL in the `Location` header; when the operation completes, its result includes the `copy_id` of the new product. Replicated products cannot be copied and replicated showcases cannot receive copies; these requests return the `replica_readonly` error code.