> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surense.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search customers having birthdays today

Search for customers who have birthdays today. Returns a paginated list of customers with their birthday information.

Example:

```json
{
	"page": 0,
	"pageSize": 30,
	// activeOnly is false on default
}
```

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "API",
    "description": "Surense API",
    "termsOfService": "https://static.surense.com/terms.htm",
    "contact": {
      "name": "API Support",
      "email": "contact@surense.com"
    },
    "version": "1"
  },
  "servers": [
    {
      "url": "https://api.surense.com/api/v1",
      "description": "Production"
    }
  ],
  "paths": {
    "/customers/birthdays/today": {
      "post": {
        "tags": [
          "Customers"
        ],
        "summary": "Search customers having birthdays today",
        "description": "Search for customers who have birthdays today. Returns a paginated list of customers with their birthday information.",
        "operationId": "searchCustomersWithBirthdaysToday",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SearchBirthdaysRequest"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "security": [
          {
            "oauth2": [
              "customers:read"
            ]
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "SearchBirthdaysRequest": {
        "type": "object",
        "description": "Request for searching customers with birthdays",
        "properties": {
          "page": {
            "type": "integer",
            "format": "int32",
            "description": "Page number for pagination",
            "example": 1
          },
          "pageSize": {
            "type": "integer",
            "format": "int32",
            "description": "Number of items per page",
            "example": 20
          },
          "activeOnly": {
            "type": "boolean",
            "description": "Filter to show only active customers",
            "example": true
          }
        }
      }
    },
    "securitySchemes": {
      "oauth2": {
        "type": "oauth2",
        "flows": {
          "authorizationCode": {
            "authorizationUrl": "https://auth.surense.com/authorize",
            "tokenUrl": "https://auth.surense.com/oauth/token",
            "scopes": {
              "openid": "OpenID",
              "profile": "Profile",
              "global:export": "Export"
            }
          }
        }
      }
    }
  }
}
```