Skip to main content
PATCH
/
{shopId}
/
wizard
/
{step}
Update set up wizard
curl --request PATCH \
  --url http://staging.qshop.ng/apiv2/{shopId}/wizard/{step} \
  --header 'Content-Type: application/json' \
  --data '
{
  "active": true,
  "completed": true,
  "componentKey": "storeLaunch",
  "description": "Launch your store",
  "disabled": false,
  "icon": "fas fa-rocket",
  "id": 9,
  "name": "Store Launch"
}
'

Path Parameters

step
string
required
Example:

"storeLaunch"

Body

application/json
active
boolean
Example:

true

completed
boolean
Example:

true

componentKey
string
Example:

"storeLaunch"

description
string
Example:

"Launch your store"

disabled
boolean
Example:

false

icon
string
Example:

"fas fa-rocket"

id
number
Example:

9

name
string
Example:

"Store Launch"

Response

200 - undefined