GET
/
transactions
List transactions
curl --request GET \
  --url https://api.funnelfox.io/public/v1/transactions \
  --header 'Fox-Secret: <fox-secret>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "session_id": "<string>",
      "profile_id": "<string>",
      "funnel_id": "<string>",
      "funnel": {
        "id": "<string>",
        "title": "<string>",
        "alias": "<string>",
        "type": "default"
      },
      "funnel_version": 123,
      "funnel_locale": "<string>",
      "experiment_id": "<string>",
      "currency": "<string>",
      "price": 123,
      "price_usd": 123,
      "sandbox": true
    }
  ],
  "pagination": {
    "total": 123,
    "has_more": true
  }
}

Headers

Fox-Secret
string
required

Project Secret Key

Example:

"secret_"

Query Parameters

limit
integer
default:20

Maximum number of items to return

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination

filter[subscription_id]
string

Filter by Subscription ID

Response

200 - application/json

transactions list

The response is of type object.