GET
/
v5
/
app
/
app_connections
Authorization
Query
curl --request GET \
  --url https://api.whop.com/api/v5/app/app_connections \
  --header 'Authorization: <authorization>'
{
  "data": [
    {
      "app_id": "<string>",
      "company_id": "<string>",
      "created_at": 123,
      "id": "<string>",
      "resource_id": "<string>",
      "resource_type": "product",
      "view_type": "customer_before_checkout_view"
    }
  ],
  "pagination": {
    "current_page": 123,
    "next_page": 123,
    "prev_page": 123,
    "total_count": 123,
    "total_pages": 123
  }
}

Authorizations

Authorization
string
headerrequired

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

Query Parameters

company_id
string

An ID of a company to filter by, which will look like biz_*************

resource_id
string

An ID of an object to filter by, which will look like prod_*************

resource_type
enum<string>

The type of resource to filter by, ex 'product'.

Available options:
product
page
integer
default: 1

The page number to retrieve

per
integer
default: 10

The number of resources to return per page. There is a limit of 50 results per page.

Response

200 - application/json
data
object[]
required
pagination
object
required