Skip to main content

Create a new product for a User within a Project

POST 

/v1/organizations/:organizationId/projects/:projectId/platforms/android/products

Create a new product for a User within a Project

Request

Path Parameters

    organizationId stringrequired

    ID of the organization

    projectId stringrequired

    ID of the project

Body

required
    sku stringrequired

    Possible values: <= 50 characters, Value must match regular expression /^[a-z0-9][a-zA-Z0-9_\.]*$/

    The SKU of the product

    name stringrequired

    Possible values: <= 50 characters

    The name of the product

    description stringrequired

    Possible values: <= 100 characters

    A detailed description of the product

    prices object[]

    The list of countries with defined prices in product

  • Array [
  • country stringrequired

    The country code

    priceAmountMicros int64required

    The price

  • ]

Responses

Product has been successfully created.

Schema
    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

  • ]
Loading...