Proposals
Manage scheduling proposals where multiple candidate times are offered for selection.
|
Endpoints
| GET | /api/v1/scheduler/proposals | List proposals |
| POST | /api/v1/scheduler/proposals | Create a proposal |
| GET | /api/v1/scheduler/proposals/{id} | Get a proposal |
GET
/api/v1/scheduler/proposalsList proposals
Authentication required— Include session cookie or Bearer token
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | Optional | Filter by status (pending / accepted / expired) |
limit | integer | Optional | Number of items to return (default: 50, max: 200) |
offset | integer | Optional | Number of items to skip |
Code Examples
curl "https://api.blueai.jp/api/v1/scheduler/proposals" \
-H "Cookie: better-auth.session_token=<token>"POST
/api/v1/scheduler/proposalsCreate a proposal
Authentication required— Include session cookie or Bearer token
Code Examples
curl -X POST "https://api.blueai.jp/api/v1/scheduler/proposals" \
-H "Cookie: better-auth.session_token=<token>"GET
/api/v1/scheduler/proposals/{id}Get a proposal
Authentication required— Include session cookie or Bearer token
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Optional | Proposal ID |
Code Examples
curl "https://api.blueai.jp/api/v1/scheduler/proposals/prop_123e4567e89b12d3a456426614174000" \
-H "Cookie: better-auth.session_token=<token>"