Integrations

Connected event sources — RevenueCat, Adapty, Stripe, Segment

Integrations are external services connected to your organization. Most are event sources — RevenueCat, Adapty, Stripe, and Segment — whose events flow into the same qualification engine as SDK and API events, so you can gate validation on a real paid conversion with zero extra instrumentation. Resend is a delivery integration: referral emails send through your existing Resend account. Connecting an integration happens in the dashboard; the API exposes read access.

The Integration object

FieldTypeDescription
idstringUnique identifier (a UUID).
objectstringAlways integration.
providerstringrevenuecat, adapty, stripe, segment, or resend.
statusstringconnected, error, or disconnected.
connected_atstring (date-time)When the integration was connected.

List connected integrations

GET/v1/integrations

Returns the event sources connected to your organization.

curl https://api.invitebase.com/v1/integrations \
  -H "Authorization: Bearer $INVITEBASE_SECRET_KEY"

Response — 200 OK:

{
  "object": "list",
  "has_more": false,
  "data": [
    {
      "id": "d2f61b7e-3c48-4d05-9a2b-8e6f1c4d7a39",
      "object": "integration",
      "provider": "revenuecat",
      "status": "connected",
      "connected_at": "2026-07-03T16:45:00Z"
    },
    {
      "id": "a8c4e1f7-2b69-4f18-b0d3-5c7e2a9f4b86",
      "object": "integration",
      "provider": "stripe",
      "status": "error",
      "connected_at": "2026-06-28T08:10:00Z"
    }
  ]
}

Events ingested through an event-source integration appear in the event stream with the matching source value (revenuecat, adapty, stripe, or segment). See the integration guides for provider setup.

On this page