Tray.io · Example Payload

Tray Io Call Connector Example

AI AgentsAPI AggregationAutomationConnectorsIntegrationiPaaSWorkflow Automation

Tray Io Call Connector Example is an example object payload from Tray.io, 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": "POST",
    "url": "https://api.tray.io/core/v1/connectors/hubspot/versions/5.2/call",
    "headers": {
      "Authorization": "Bearer {bearer_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "operation": "find_contacts",
      "authId": "auth-uuid-hubspot-123",
      "input": {
        "limit": 50,
        "properties": ["firstname", "lastname", "email"]
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "results": [
        {
          "id": "1234",
          "properties": {
            "firstname": "Jane",
            "lastname": "Smith",
            "email": "jane.smith@example.com"
          }
        }
      ],
      "paging": {
        "next": {
          "after": "2",
          "link": "https://api.hubapi.com/crm/v3/objects/contacts?after=2"
        }
      }
    }
  }
}