Skip to main content

Create or update steps for async processes


ApiScope: manage.async.process.write
API Scope Level: ServiceSubscriberScope
Request Body required
    uuid string
    order int32
    key string
    detail string
    name string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    asyncProcessStep object
    uuid string
    order int32
    key string
    detail string
    name string
PUT /v2/async-processes/steps

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
Body required
{
"uuid": "string",
"order": 0,
"key": "string",
"detail": "string",
"name": "string"
}
curl / cURL
curl -L -X PUT '/manage/v2/async-processes/steps' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"uuid": "string",
"order": 0,
"key": "string",
"detail": "string",
"name": "string"
}'