Skip to main content

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

    organizationId stringrequired

    ID of the organization

    projectId stringrequired

    ID of the project

Query Parameters

    includePrices booleanrequired

    Flag to include prices in the response

    page numberrequired

    Possible values: >= 1

    Default value: 1

    Page number starting from 1.

    Example: 1
    limit numberrequired

    Possible values: >= 1 and <= 100

    Default value: 10

    Limit the number of results returned. Default is 10.

    Example: 10

Responses

Successfully retrieved all products.

Schema
    data object[]required

    List of Android Products

  • 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

  • Array [
  • country stringrequired

    The country code

    priceAmountMicros int64required

    The price

  • ]
  • ]
  • metadata object
    currentPage numberrequired

    The current page number.

    limit numberrequired

    Number of items per page.

    total numberrequired

    Total number of items.

    nextPage numbernullablerequired

    The next page number, or null if this is the last page.

    previousPage numbernullablerequired

    The previous page number, or null if this is the first page.

Loading...