Get Guest Details

Fetch detailed guest information including contact details and booking history.

Get a guest profile by ID

GET/v1/guests/:id

Request

curl https://api.repull.dev/v1/guests/123 \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -H "X-Workspace-Id: YOUR_WORKSPACE_ID"

Response

{
  "data": {
    "id": "789",
    "firstName": "Sarah",
    "lastName": "Mitchell",
    "language": "en",
    "contacts": [
      { "type": "EMAIL", "value": "sarah@example.com", "isPrimary": true },
      { "type": "PHONE", "value": "+15551234567", "isPrimary": false }
    ],
    "createdAt": "2026-01-10T08:00:00Z"
  }
}
AI