All URIs are relative to https://www.metaculus.com
Method | HTTP request | Description |
---|---|---|
reminders_create | POST /api2/reminders/ | |
reminders_list | GET /api2/reminders/ | |
reminders_partial_update | PATCH /api2/reminders/{id}/ | |
reminders_retrieve | GET /api2/reminders/{id}/ | |
reminders_update | PUT /api2/reminders/{id}/ |
crate::models::Reminder reminders_create(reminder)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
reminder | Reminder | [required] |
basicAuth, cookieAuth, tokenAuth
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::PaginatedReminderList reminders_list(page, question, status)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
page | Option<i32> | A page number within the paginated result set. | ||
question | Option<i32> | |||
status | Option<String> |
crate::models::PaginatedReminderList
basicAuth, cookieAuth, tokenAuth
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::Reminder reminders_partial_update(id, patched_reminder)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | i32 | A unique integer value identifying this reminder. | [required] | |
patched_reminder | Option<PatchedReminder> |
basicAuth, cookieAuth, tokenAuth
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::Reminder reminders_retrieve(id)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | i32 | A unique integer value identifying this reminder. | [required] |
basicAuth, cookieAuth, tokenAuth
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
crate::models::Reminder reminders_update(id, reminder)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | i32 | A unique integer value identifying this reminder. | [required] | |
reminder | Reminder | [required] |
basicAuth, cookieAuth, tokenAuth
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]