Knock · Example Payload

Knock Identify User Example

NotificationsMessagingInfrastructureWorkflowsCross-ChannelEmailSMSPushIn-AppChatSlackWebhooksMCPAI AgentsDeveloper Platform

Knock Identify User Example is an example object payload from Knock, 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": "PUT",
    "url": "https://api.knock.app/v1/users/user_123",
    "headers": {
      "Authorization": "Bearer sk_test_12345",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "John Hammond",
      "email": "hammondj@ingen.net",
      "phone_number": "555-555-5555",
      "avatar": "https://ingen.net/headshots/hammondj.jpg",
      "timezone": "America/Costa_Rica",
      "properties": {
        "title": "CEO",
        "planType": "allAccess",
        "userType": "admin"
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "__typename": "User",
      "id": "user_123",
      "name": "John Hammond",
      "email": "hammondj@ingen.net",
      "phone_number": "555-555-5555",
      "avatar": "https://ingen.net/headshots/hammondj.jpg",
      "timezone": "America/Costa_Rica",
      "created_at": "2026-05-25T10:00:00Z",
      "updated_at": "2026-05-25T10:00:00Z"
    }
  }
}