# Update Guest Profile Contact Details

> Pod Engine API endpoint reference, optimized for LLM consumption.
> Auto-generated from the source-of-truth endpoint registry.
>
> Category: Guest Profiles
> Source: https://www.podengine.ai/api-docs/update-guest-profile-contact-details.md
> Interactive HTML docs: https://www.podengine.ai/api-docs/update-guest-profile-contact-details
> Full API reference (all endpoints): https://www.podengine.ai/api-docs/llms.txt

**Base URL:** `http://localhost:4000`
**Auth:** Requires a Bearer token: `Authorization: Bearer YOUR_API_KEY`

---

#### PUT /api/v1/guest-profiles/:guestProfileId/contact-details
**Update Guest Profile Contact Details**

Update the contact details of a guest profile including name, email, phone, company, website URL, booking URL, LinkedIn, and one-pager URL.

```bash
curl -X PUT "http://localhost:4000/api/v1/guest-profiles/example-guest-profile-id/contact-details" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

**Path parameters schema:**
```json
{
  "type": "object",
  "properties": {
    "guestProfileId": {
      "type": "string",
      "description": "The guest profile ID"
    }
  },
  "required": [
    "guestProfileId"
  ],
  "additionalProperties": false
}
```

**Request body schema:**
```json
{
  "type": "object",
  "properties": {
    "bookingUrl": {
      "description": "Calendar booking URL",
      "type": "string"
    },
    "onePagerUrl": {
      "description": "One-pager document URL",
      "type": "string"
    },
    "companyName": {
      "description": "Company name",
      "type": "string"
    },
    "email": {
      "description": "Email address",
      "type": "string"
    },
    "firstName": {
      "description": "First name",
      "type": "string"
    },
    "lastName": {
      "description": "Last name",
      "type": "string"
    },
    "linkedIn": {
      "description": "LinkedIn profile URL",
      "type": "string"
    },
    "name": {
      "description": "Full name",
      "type": "string"
    },
    "phone": {
      "description": "Phone number",
      "type": "string"
    },
    "websiteUrl": {
      "description": "Website URL",
      "type": "string"
    }
  },
  "additionalProperties": false
}
```

**Response schema:**
```json
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OK"
      ]
    },
    "data": {
      "type": "object",
      "properties": {
        "success": {
          "type": "boolean"
        }
      },
      "required": [
        "success"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "status",
    "data"
  ],
  "additionalProperties": false
}
```

---

## See also

- All endpoints in one file: https://www.podengine.ai/api-docs/llms.txt
- Full reference with every schema inlined: https://www.podengine.ai/api-docs/llms-full.txt
- OpenAPI 3.1 spec: https://www.podengine.ai/api-docs/openapi.json
- Get an API key: https://www.podengine.ai/get-started
- Support: support@podengine.ai
