Unified.to · Example Payload

Unified To List Crm Contacts Example

IntegrationsUnified API

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

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.unified.to/crm/{connection_id}/contact",
    "headers": {
      "Authorization": "Bearer YOUR_JWT_TOKEN"
    },
    "parameters": {
      "limit": 20,
      "offset": 0,
      "order": "created_at",
      "sort": "desc",
      "query": "john"
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "id": "contact_01H8X9K2M3N4P5Q6R7S8T9U0",
        "name": "John Smith",
        "emails": [
          {
            "email": "john.smith@example.com",
            "type": "WORK"
          }
        ],
        "telephones": [
          {
            "telephone": "+1-555-123-4567",
            "type": "WORK"
          }
        ],
        "company_id": "company_01H8X9K2M3N4P5Q6R7S8T9U1",
        "company_name": "Acme Corp",
        "title": "VP of Engineering",
        "address": {
          "address1": "123 Main St",
          "city": "San Francisco",
          "state": "CA",
          "postal_code": "94102",
          "country": "US"
        },
        "created_at": "2026-01-15T10:30:00Z",
        "updated_at": "2026-04-20T14:22:00Z",
        "raw": {}
      }
    ]
  }
}