Skip to main content
PUT
/
api2
/
v1
/
workflowSteps
/
{workflowStepUid}
Edit workflow step
curl --request PUT \
  --url https://cloud.memsource.com/web/api2/v1/workflowSteps/{workflowStepUid} \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "order": 123,
  "lqaEnabled": true,
  "abbr": "<string>"
}'
{
  "id": "<string>",
  "uid": "<string>",
  "name": "<string>",
  "abbr": "<string>",
  "order": 123,
  "lqaEnabled": true
}

Path Parameters

workflowStepUid
string
required

Body

application/json
name
string

Name of the lqa workflow step

Required string length: 1 - 255
order
integer

Order value

lqaEnabled
boolean

Default: false

abbr
string

Abbreviation

Required string length: 1 - 3

Response

successful operation

id
string
uid
string
name
string
abbr
string
order
integer
lqaEnabled
boolean
I