Skip to main content
PUT
/
schema
/
{username}
/
{namespace}
/
{datasetName}
/
sort-order
Update dataset sort order
curl --request PUT \
  --url https://api.datalinks.com/api/v1/schema/{username}/{namespace}/{datasetName}/sort-order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "order": [
    "id",
    "name",
    "age",
    "department",
    "location"
  ]
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Path Parameters

namespace
string
required
datasetName
string
required
username
string
required

Body

application/json
order
string[]
required
Example:

Response