Skip to main content

Get list of all async processes


ApiScope: manage.async.process.read
API Scope Level: ServiceSubscriberScope
Request Body required
    page int32
    pageSize int32
    taskTypes string[]

    Possible values: [CREATE_DEALER, UPDATE_DEALER_PRODUCTS]

    taskStatuses string[]

    Possible values: [NOT_STARTED, COMPLETED, FAILED, IN_PROGRESS, NOT_NEEDED]

Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    asyncTaskVisibleList object[]
  • Array [
  • uuid string
    asyncTaskType string

    Possible values: [CREATE_DEALER, UPDATE_DEALER_PRODUCTS]

    name string
    taskDetails string
    startTime string
    endTime string
    status string

    Possible values: [NOT_STARTED, COMPLETED, FAILED, IN_PROGRESS, NOT_NEEDED]

    requesterUserName string
    serviceSubscriber string
    steps object[]
  • Array [
  • uuid string
    order int32
    key string
    detail string
    name string
    startTime string
    endTime string
    status string

    Possible values: [NOT_STARTED, COMPLETED, FAILED, IN_PROGRESS, NOT_NEEDED]

  • ]
  • ]
  • totalCount int32
POST /v2/async-processes/searches

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
Body required
{
"page": 0,
"pageSize": 0,
"taskTypes": [
"CREATE_DEALER"
],
"taskStatuses": [
"NOT_STARTED"
]
}
curl / cURL
curl -L -X POST '/manage/v2/async-processes/searches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"page": 0,
"pageSize": 0,
"taskTypes": [
"CREATE_DEALER"
],
"taskStatuses": [
"NOT_STARTED"
]
}'