Skip to main content
PATCH
/
dev
/
v1
/
products
/
{id}
/
serials
/
{serialId}
Update product serial
curl --request PATCH \
  --url https://api.shoppex.io/dev/v1/products/{id}/serials/{serialId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "serial": "KEY-UPDATED"
}
'
{
  "data": {
    "id": "serial_1",
    "serial": "KEY-UPDATED"
  }
}

Authorizations

Authorization
string
header
required

Use your Shoppex API key in the Authorization header.

Path Parameters

id
string
required
serialId
string
required

Body

serial
string
required

Response

200 - application/json

Successful response

data
object