跳转到主要内容
PUT
/
base
/
{baseId}
/
workflow
/
{workflowId}
/
order
cURL
curl --request PUT \
  --url http://127.0.0.1:3000/api/base/{baseId}/workflow/{workflowId}/order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "anchorId": "<string>",
  "position": "before"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

baseId
string
required
workflowId
string
required

Body

application/json
anchorId
string
required
position
enum<string>
required
可用选项:
before,
after

Response

200

Successfully update.