myLPs Dashboard

Wave Accounting Sync

Connect Wave Accounting's GraphQL API to pull bank feeds and sync general ledger mappings.

Integration Status: Disconnected

Wave API Integration

Wave uses a secure **GraphQL API**. To authorize this dashboard, navigate to the **[Wave Developer Portal](https://developer.waveapps.com)**, create a "Full Access Token" for your business, and input it below.

Integration Status: Not Connected

Sync Manager

Sync imports transactions and bills directly from your Wave Chart of Accounts and Bank feeds.

Linked Business ID:N/A
Last Synced Date:Never
Establish an API connection to enable synchronization tools for this LP.

GraphQL Developer Reference

The Wave GraphQL API is queried using standard queries. We use the following query to fetch business transaction logs:

query GetBusinessTransactions($businessId: ID!) {
  business(id: $businessId) {
    id
    name
    transactions(first: 50) {
      edges {
        node {
          id
          date
          description
          amount {
            value
            currency {
              code
            }
          }
          account {
            id
            name
          }
        }
      }
    }
  }
}