POST
/
products
/
{product_id}
/
docs
/
reorder
Change order of tutorial pages
curl --request POST \
  --url http://localhost:3001/portal-api/products/{product_id}/docs/reorder \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '[
  1
]'

Authorizations

Authorization
string
header
required

Path Parameters

product_id
integer
required

UID of an API Product

Example:

1

Body

application/json · integer[]

An array containing the UIDs of tutorial pages represents the new order of tutorial pages for this API Product. The tutorial page whose UID appears first in this array will be positioned first in the API Product's Get Started tab, and so on.

The body is of type integer[].

Response

OK