Skip to main content

Retrieve all subscriptions for a User within a Project

GET 

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

Retrieve all subscriptions for a User within a Project

Request

Path Parameters

    organizationId stringrequired

    ID of the organization

    projectId stringrequired

    ID of the project

Query Parameters

    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

The subscriptions have been successfully retrieved.

Schema
    data object[]required

    List of Android subscriptions

  • Array [
  • id stringrequired

    The unique identifier of the subscription.

    sku stringrequired

    The stock keeping unit to avoid conflict with subscriptionId and id. It is unique per project.

    name stringrequired

    The name of the subscription.

    description stringrequired

    The description of the subscription.

    legacy booleanrequired

    Indicates if the subscription is legacy.

  • ]
  • 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...