Version: 202201
Create Product Image
POST/openapi/2022-01/products/:product_id/images
Create a new product image with the provided details.
Request
Path Parameters
product_id stringrequired
Product's ID
- application/json
- Body
- Example
Body
image object
positionint32
The position of the image. Must be greater than 0 if provided.
srcstringrequired
The relative URL of the image.
altstring
The alt text of the image.
widthint32
The width of the image in pixels. Must be greater than 0 if provided.
heightint32
The height of the image in pixels. Must be greater than 0 if provided.
{
"image": {
"position": 0,
"src": "string",
"alt": "string",
"width": 0,
"height": 0
}
}
Responses
- 200
- 404
- 422
200
- application/json
- Schema
- Example
- Result
Schema
image object
idstring
Example:
91d032e7-bbc8-47e4-8668-9ba6fe714de6product_idstring
Example:
636a07da-39eb-4829-bde9-b65fae1c28b0positioninteger
Default value:
0Example:
1srcstring
Example:
//cdn.shoplazza.com/efd33b921cacd5311a32dd03a9bc8740.pngwidthinteger
Default value:
0Example:
1588heightinteger
Default value:
0Example:
2246altstring
Example:
created_atstring
Example:
2024-04-08T07:13:28Zupdated_atstring
Example:
2024-04-08T07:13:28Z{
"image": {
"id": "91d032e7-bbc8-47e4-8668-9ba6fe714de6",
"product_id": "636a07da-39eb-4829-bde9-b65fae1c28b0",
"position": 1,
"src": "//cdn.shoplazza.com/efd33b921cacd5311a32dd03a9bc8740.png",
"width": 1588,
"height": 2246,
"alt": "",
"created_at": "2024-04-08T07:13:28Z",
"updated_at": "2024-04-08T07:13:28Z"
}
}
{
"image": {
"id": "91d032e7-bbc8-47e4-8668-9ba6fe714de6",
"product_id": "636a07da-39eb-4829-bde9-b65fae1c28b0",
"position": 1,
"src": "//cdn.shoplazza.com/efd33b921cacd5311a32dd03a9bc8740.png",
"width": 1588,
"height": 2246,
"alt": "",
"created_at": "2024-04-08T07:13:28Z",
"updated_at": "2024-04-08T07:13:28Z"
}
}
404
- application/json
- Schema
- Example
- Result
Schema
errorsstring[]
{
"errors": [
"Product not found"
]
}
{
"errors": [
"Product not found"
]
}
422
- application/json
- Schema
- Example
- Result
Schema
errorsstring[]
{
"errors": [
"ProductId must be a valid UUID"
]
}
{
"errors": [
"ProductId must be a valid UUID"
]
}