Skip to main content
PUT
/
kit
/
update
Kit - Update
curl --request PUT \
  --url https://api.skulabs.com/kit/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "_id": "507f1f77bcf86cd799439011",
    "kit_id": "<string>",
    "listing_sku": "<string>",
    "sku": "<string>"
  }
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
data
object
required

Kit data to update (must include _id, kit_id, listing_sku, or sku to identify the kit)

Response

Kit updated

success
boolean
required

Whether the operation succeeded