Retrieve a product by ID for a User within a Project
GET/v1/organizations/:organizationId/projects/:projectId/platforms/android/products/:productId
Retrieve 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
Query Parameters
includePrices booleanrequired
Flag to include prices in the response
Responses
- 200
- 400
Successfully retrieved product.
- 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.006Z",
"updatedAt": "2024-07-31T20:57:59.006Z",
"organizationId": "string",
"prices": [
{
"country": "US",
"price": 10
},
{
"country": "GB",
"price": 15
}
]
}
Bad Request
Loading...