Supaglue · Example Payload

Supaglue List Contacts Example

List CRM contacts via the Supaglue Unified CRM API for a customer's Salesforce connection

CRMHRISUnified APIOpen SourceIntegrationsSales Engagement

Supaglue List Contacts Example is an example object payload from Supaglue, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationdescriptionrequestresponse

Example Payload

Raw ↑
{
  "operation": "listContacts",
  "description": "List CRM contacts via the Supaglue Unified CRM API for a customer's Salesforce connection",
  "request": {
    "method": "GET",
    "url": "https://api.supaglue.io/crm/v2/contacts?cursor=&page_size=25",
    "headers": {
      "x-api-key": "your_supaglue_api_key",
      "x-customer-id": "customer_123",
      "x-provider-name": "salesforce",
      "Content-Type": "application/json"
    }
  },
  "response": {
    "statusCode": 200,
    "body": {
      "pagination": {
        "previous": null,
        "next": "eyJpZCI6ImNvbnRhY3RfNDU2In0="
      },
      "records": [
        {
          "id": "supaglue_contact_001",
          "remote_id": "0035g00000ABC123",
          "first_name": "Jane",
          "last_name": "Smith",
          "title": "VP of Engineering",
          "department": "Engineering",
          "account_id": "supaglue_account_001",
          "owner_id": "supaglue_user_001",
          "email_addresses": [
            {
              "email_address": "jane.smith@example.com",
              "email_address_type": "primary"
            },
            {
              "email_address": "jsmith@work.com",
              "email_address_type": "work"
            }
          ],
          "phone_numbers": [
            {
              "phone_number": "+14155551234",
              "phone_number_type": "mobile"
            }
          ],
          "addresses": [
            {
              "street_1": "123 Main St",
              "street_2": null,
              "city": "San Francisco",
              "state": "CA",
              "postal_code": "94105",
              "country": "US",
              "address_type": "work"
            }
          ],
          "remote_created_at": "2024-01-15T09:00:00Z",
          "remote_updated_at": "2026-03-20T14:30:00Z",
          "remote_was_deleted": false,
          "custom_fields": {
            "Lead_Source__c": "Website",
            "Customer_Since__c": "2024-01-01"
          }
        }
      ]
    }
  }
}