## Enable Connection Pooler for a Service

**post** `/projects/{project_id}/services/{service_id}/enablePooler`

Activates the connection pooler for a specific service within a project.

### Path Parameters

- `project_id: string`

- `service_id: string`

### Returns

- `message: optional string`

### Example

```http
curl http://localhost:8080/projects/$PROJECT_ID/services/$SERVICE_ID/enablePooler \
    -X POST \
    -H "Authorization: Bearer $TIGER_CLOUD_API_KEY"
```

#### Response

```json
{
  "message": "Action completed successfully."
}
```
