Retrieve all products for a User within a Project
GET/v1/organizations/:organizationId/projects/:projectId/platforms/android/products
Retrieve all products for a User within a Project
Request
Path Parameters
ID of the organization
ID of the project
Query Parameters
Flag to include prices in the response
Possible values: >= 1
Default value: 1
Page number starting from 1.
Possible values: >= 1
and <= 100
Default value: 10
Limit the number of results returned. Default is 10.
Responses
- 200
- 400
Successfully retrieved all products.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
data object[]required
List of Android Products
The unique identifier of the product.
The SKU of the product
The name of the product.
A brief description of the product.
The date and time when the product was created.
The date and time when the product was last updated.
The identifier of the organization associated with the product.
prices object[]
The list of countries with defined prices in product
The country code
The price
metadata object
The current page number.
Number of items per page.
Total number of items.
The next page number, or null if this is the last page.
The previous page number, or null if this is the first page.
{
"data": [
{
"id": "string",
"sku": "prod-1234",
"name": "string",
"description": "string",
"createdAt": "2024-07-31T20:57:59.004Z",
"updatedAt": "2024-07-31T20:57:59.004Z",
"organizationId": "string",
"prices": [
{
"country": "US",
"price": 10
},
{
"country": "GB",
"price": 15
}
]
}
],
"metadata": {
"currentPage": 1,
"limit": 10,
"total": 100,
"nextPage": 2,
"previousPage": null
}
}
Bad Request