# Important dates

> List and create important dates (birthdays, anniversaries) for organization members.

Language: en
Canonical: https://www.dailybot.com/developers/api/important-dates
Markdown: send header `Accept: text/markdown` on any URL to receive Markdown instead of HTML.
Last Updated: 2026-04-06

---

# Important dates

List and create important dates (birthdays, work anniversaries, and custom events) for organization members.

## Endpoints summary

| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/v1/important-dates/` | List important dates |
| GET | `/v1/important-dates/{id}/` | Get a specific important date |
| POST | `/v1/important-dates/` | Create an important date |

---

## GET /v1/important-dates/

Returns important dates for the organization, optionally filtered by user.

### Query parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `user_uuid` | string (UUID) | No | User UUID whose dates to return. |
| `date_type` | string | No | Filter by type: `birthday`, `anniversary`, or `custom`. |
| `limit` | integer | No | Number of results. Default: 250. |
| `offset` | integer | No | Pagination offset. |

```bash
curl -X GET "https://api.dailybot.com/v1/important-dates/?user_uuid=usr_abc123" \
  -H "X-API-KEY: your_api_key"
```

**Response (200 OK):**

```json
{
  "count": 2,
  "results": [
    {
      "id": "date-uuid",
      "user": { "uuid": "usr_abc123", "name": "Jane Doe" },
      "date_type": "birthday",
      "date": "1990-03-15",
      "label": "Birthday"
    }
  ]
}
```

---

## GET /v1/important-dates/{id}/

Returns a specific important date.

```bash
curl -X GET "https://api.dailybot.com/v1/important-dates/date-uuid/" \
  -H "X-API-KEY: your_api_key"
```

---

## POST /v1/important-dates/

Creates a new important date for a user.

### Body parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `user_uuid` | string (UUID) | Yes | UUID of the user. |
| `date_type` | string | Yes | One of: `birthday`, `anniversary`, `custom`. |
| `date` | string | Yes | Date in `YYYY-MM-DD` format. |
| `label` | string | No | Custom label for the date. |

```bash
curl -X POST "https://api.dailybot.com/v1/important-dates/" \
  -H "X-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "user_uuid": "usr_abc123",
    "date_type": "birthday",
    "date": "1990-03-15",
    "label": "Birthday"
  }'
```

**Response (201 Created):**

```json
{
  "id": "date-uuid",
  "user": { "uuid": "usr_abc123", "name": "Jane Doe" },
  "date_type": "birthday",
  "date": "1990-03-15",
  "label": "Birthday"
}
```

## Endpoints in this group

Read organization-scheduled important dates (holidays, out-of-office).

| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/v1/important-date/` | List important dates |
| GET | `/v1/important-date/{uuid}/` | Retrieve an important date |

### GET `/v1/important-date/`

**List important dates**

List important dates

- **Auth:** API key (`X-API-KEY`), CLI Bearer (read)
- **Rate limit:** `default`
- **Pagination:** Page-number pagination

#### Error codes

| Status | When |
|--------|------|
| `401` | Missing/invalid/expired credential |
| `403` | Authenticated but not permitted |
| `429` | Throttled - Retry-After header set |

#### Example (curl)

```bash
curl -sS -X GET 'https://api.dailybot.com/v1/important-date/' -H 'X-API-KEY: $DAILYBOT_API_KEY'
```

### GET `/v1/important-date/{uuid}/`

**Retrieve an important date**

Retrieve an important date

- **Auth:** API key (`X-API-KEY`), CLI Bearer (read)
- **Rate limit:** `default`
- **Pagination:** No pagination

#### Path parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `uuid` | string (uuid) | Yes | — |

#### Error codes

| Status | When |
|--------|------|
| `401` | Missing/invalid/expired credential |
| `403` | Authenticated but not permitted |
| `429` | Throttled - Retry-After header set |
| `404` | Not found or not visible |

#### Example (curl)

```bash
curl -sS -X GET 'https://api.dailybot.com/v1/important-date/{uuid}/' -H 'X-API-KEY: $DAILYBOT_API_KEY'
```

---

## Developer portal navigation

**Getting Started**

- [Overview](/developers)
- [Quick start](/developers/getting-started)
- [Authentication](/developers/authentication)

**API Reference**

- [API Overview](/developers/api)
- [Users](/developers/api/users)
- [Organization](/developers/api/organization)
- [Teams](/developers/api/teams)
- [Invitations](/developers/api/invitations)
- [Check-ins](/developers/api/check-ins)
- [Forms](/developers/api/forms)
- [Report channels](/developers/api/report-channels)
- [Templates](/developers/api/templates)
- [Kudos](/developers/api/kudos)
- [Mood tracking](/developers/api/mood)
- [Important dates](/developers/api/important-dates) (this page)
- [Messaging](/developers/api/messaging)
- [Automations](/developers/api/workflows)
- [Webhooks](/developers/api/webhooks)
- [Commands platform](/developers/api/commands-platform)
- [Agents](/developers/api/agents)
- [OAuth2](/developers/api/oauth2)
- [Integrations](/developers/api/integrations)
- [CLI](/developers/api/cli)

**API guides**

- [Errors & Status Codes](/developers/errors)
- [Rate Limits](/developers/rate-limits)
- [Conventions](/developers/conventions)
- [API Changelog](/developers/api-changelog)
- [Recipes](/developers/recipes)

**Developer Features**

- [Custom commands](/developers/custom-commands)
- [Serverless commands](/developers/serverless)
- [Webhooks & events](/developers/webhooks)
- [Automation API trigger](/developers/workflow-trigger)
- [Activity API](/developers/activity-api)

**CLI**

- [Overview](/developers/cli)
- [Authentication](/developers/cli-authentication)
- [Command reference](/developers/cli-reference)
- [CI/CD recipes](/developers/cli-ci-cd)
- [Configuration](/developers/cli-configuration)
- [Troubleshooting](/developers/cli-troubleshooting)

**Agent Skill**

- [Overview](/developers/agent-skill)
- [Skills catalog](/skills)

---

## Site navigation

**Product:**
- [Home](/)
- [Product](/product)
- [Pricing](/pricing)
- [Enterprise](/enterprise)
- [Integrations](/integrations)
- [Templates](/templates)

**Resources:**
- [Blog](/blog)
- [Academy](/academy)
- [Changelog](/changelog)
- [Help Center](/help)
- [Developers](/developers)
- [Agents](/agents)

**Company:**
- [About](/about)
- [Careers](/careers)
- [Security](/security)
- [Contact Sales](/demo)

**Connect:**
- [LinkedIn](https://www.linkedin.com/company/dailybot/)
- [X/Twitter](https://twitter.com/dailybot)
- [GitHub](https://github.com/Dailybot-Inc)
- [YouTube](https://www.youtube.com/channel/UC3uM9V52vwX7e3vQpCc4qvA)

