Skip to main content
This guide walks you through making your first API request to retrieve data from a linked account.

Prerequisites

  1. API Key created in StackOne Dashboard and copied to a secure location
  2. Basic Authentication Setup - Learn how to properly authenticate with StackOne API using your API key
  3. Required provider integration enabled
  4. Account linked successfully
  5. (Optional) Use an SDK

Getting Account ID

Authentication: When using curl -u "$API_KEY:", encoding is handled automatically. When setting the Authorization header manually, base64 encode {api_key}:, your key followed by a colon. See Authentication for details.
  1. List your linked accounts to find the account ID:
  1. From the response, copy the id value for your desired provider account.
Filter by provider using the providers query parameter:

Making Your First Request

Now you’re ready to make your first CRM API call. Let’s list contacts from the connected CRM system:

Example Response

Next Steps

Get Contact

Retrieve details for a specific contact

List Accounts

Get company accounts from the CRM

Pagination

Handle large result sets efficiently

Get All Lists

View contact lists and segments

References