Update a product by ID for a User within a Project
PUT/v1/organizations/:organizationId/projects/:projectId/platforms/android/products/:productId
Update a product by ID for a User within a Project
Request
Path Parameters
organizationId stringrequired
ID of the organization
projectId stringrequired
ID of the project
productId stringrequired
ID of the product
- application/json
Body
required
- Array [
- ]
name stringrequired
The name of the product
description stringrequired
A detailed description of the product
prices object[]
The list of countries with defined prices in product
country stringrequired
The country code
priceAmountMicros int64required
The price
Responses
- 200
- 400
Product has been successfully updated.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id stringrequired
The unique identifier of the product.
sku stringrequired
The SKU of the product
name stringrequired
The name of the product.
description stringrequired
A brief description of the product.
createdAt date-timerequired
The date and time when the product was created.
updatedAt date-timerequired
The date and time when the product was last updated.
organizationId stringrequired
The identifier of the organization associated with the product.
prices object[]
The list of countries with defined prices in product
country stringrequired
The country code
priceAmountMicros int64required
The price
{
"id": "string",
"sku": "prod-1234",
"name": "string",
"description": "string",
"createdAt": "2024-07-31T20:57:59.007Z",
"updatedAt": "2024-07-31T20:57:59.007Z",
"organizationId": "string",
"prices": [
{
"country": "US",
"price": 10
},
{
"country": "GB",
"price": 15
}
]
}
Bad Request
Loading...