GET
/
monetization
/
transactions
/
v1
curl --request GET \
  --url https://api.mottostreaming.com/monetization/transactions/v1 \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "user_id": "<string>",
      "offer_id": "<string>",
      "offer_title": "<string>",
      "offer_description": "<string>",
      "status": "TRANSACTION_STATUS_UNSPECIFIED",
      "msrp": {
        "currency_code": "<string>",
        "units": "<string>",
        "nanos": 123
      },
      "subtotal_amount": {
        "currency_code": "<string>",
        "units": "<string>",
        "nanos": 123
      },
      "total_amount": {
        "currency_code": "<string>",
        "units": "<string>",
        "nanos": 123
      },
      "vat_amount": {
        "currency_code": "<string>",
        "units": "<string>",
        "nanos": 123
      },
      "discount_code": "<string>",
      "discount_amount": {
        "currency_code": "<string>",
        "units": "<string>",
        "nanos": 123
      },
      "discount_percentage": 123,
      "billing_period": "BILLING_PERIOD_UNSPECIFIED",
      "access_period": "ACCESS_PERIOD_UNSPECIFIED",
      "payment_method_id": "<string>",
      "subscription_id": "<string>",
      "create_time": "2023-11-07T05:31:56Z",
      "capture_time": "2023-11-07T05:31:56Z",
      "is_test": true
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_size
integer

Maximum number of records to return

project_id
string
filter
string

Filter the result-set by properties using a subset of the Kibana Query Language. Only AND statements are supported. Currently supports filtering on cleeng_transaction_id field.

page_token
string

The pagination token in the List request.

Response

200
application/json
OK
transactions
object[]
next_page_token
string

The pagination token that should be used to get next page results. An empty value means no more results