logo of カレンダー自由自在ちゃん on the GPT Store

カレンダー自由自在ちゃん on the GPT Store

Use カレンダー自由自在ちゃん on ChatGPT Use カレンダー自由自在ちゃん on 302.AI

GPT Description

グーグルカレンダー連携

GPT Action OpenAPI Spec

{
  "openapi": "3.0.2",
  "info": {
    "title": "Zapier AI Actions for GPT (Dynamic)",
    "version": "1.0.0",
    "description": "Equip GPTs with the ability to run thousands of actions via Zapier. (703dcca4c2e24c5ea5e2c717eba11029)",
    "x-openai-verification-token": "703dcca4c2e24c5ea5e2c717eba11029"
  },
  "servers": [
    {
      "url": "https://actions.zapier.com"
    }
  ],
  "paths": {
    "/gpt/api/v1/available/": {
      "get": {
        "operationId": "list_available_actions",
        "summary": "List Available Actions",
        "parameters": [
          {
            "in": "query",
            "name": "apps",
            "schema": {
              "title": "Apps",
              "description": "Filter actions to a comma separated list of Zapier app names.",
              "type": "string"
            },
            "required": false,
            "description": "Filter actions to a comma separated list of Zapier app names."
          },
          {
            "in": "query",
            "name": "exact_search",
            "schema": {
              "title": "Exact Search",
              "description": "Filter actions to exact search string of the description (case insensitive).",
              "type": "string"
            },
            "required": false,
            "description": "Filter actions to exact search string of the description (case insensitive)."
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AvailableActionResponseSchema"
                }
              }
            }
          }
        },
        "description": "List all the currently available actions for the user. If you try to run an action and receive an error\n that it does not exist, try refreshing this list first.",
        "security": [
          {
            "AccessPointOAuth": []
          }
        ]
      }
    },
    "/gpt/api/v1/available/{available_action_id}/run/": {
      "post": {
        "operationId": "run_action",
        "summary": "Run Action",
        "parameters": [
          {
            "in": "path",
            "name": "available_action_id",
            "schema": {
              "title": "Available Action Id",
              "type": "string",
              "pattern": "^[A-Z0-9]{26}$",
              "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
            },
            "required": true,
            "example": "01ARZ3NDEKTSV4RRFFQ69G5FAV"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RunResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        },
        "description": "Run an available action using plain english instructions. You may also include associated params from list_available_actions in the body of the request.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RunRequest"
              }
            }
          },
          "required": true
        },
        "security": [
          {
            "AccessPointOAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "AvailableActionSchema": {
        "title": "AvailableActionSchema",
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "description": "The unique ID of the available action.",
            "type": "string"
          },
          "operation_id": {
            "title": "Operation Id",
            "description": "The operation ID of the available action.",
            "type": "string"
          },
          "description": {
            "title": "Description",
            "description": "Description of the action.",
            "type": "string"
          },
          "params": {
            "title": "Params",
            "description": "Available hint fields for the action.",
            "type": "object"
          }
        },
        "required": [
          "id",
          "operation_id",
          "description",
          "params"
        ]
      },
      "AvailableActionResponseSchema": {
        "title": "AvailableActionResponseSchema",
        "type": "object",
        "properties": {
          "results": {
            "title": "Results",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AvailableActionSchema"
            }
          },
          "configuration_link": {
            "title": "Configuration Link",
            "description": "Guide the user to setup new actions with the configuration_link. You can optionally add ?setup_action=... onto configuration_link to set up a specific Zapier app and action For example: https://actions.zapier.com/gpt/start?setup_action=gmail find email",
            "type": "string"
          }
        },
        "required": [
          "results",
          "configuration_link"
        ]
      },
      "RunResponse": {
        "title": "RunResponse",
        "description": "This is a summary of the results given the action that was run.",
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "description": "The id of the run log.",
            "type": "string"
          },
          "action_used": {
            "title": "Action Used",
            "description": "The name of the action that was run.",
            "type": "string"
          },
          "input_params": {
            "title": "Input Params",
            "description": "The params we used / will use to run the action.",
            "type": "object"
          },
          "review_url": {
            "title": "Review Url",
            "description": "The URL to run the action or review the AI choices the AI made for input_params given instructions.",
            "type": "string"
          },
          "result": {
            "title": "Result",
            "description": "A trimmed down result of the first item of the full results. Ideal for humans and language models!",
            "type": "object"
          },
          "additional_results": {
            "title": "Additional Results",
            "description": "The rest of the full results. Always returns an array of objects",
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "result_field_labels": {
            "title": "Result Field Labels",
            "description": "Human readable labels for some of the keys in the result.",
            "type": "object"
          },
          "status": {
            "title": "Status",
            "description": "The status of the action run.",
            "default": "success",
            "enum": [
              "success",
              "error",
              "empty",
              "preview"
            ],
            "type": "string"
          },
          "error": {
            "title": "Error",
            "description": "The error message if the action run failed.",
            "type": "string"
          },
          "assistant_hint": {
            "title": "Assistant Hint",
            "description": "A hint for the assistant on what to do next.",
            "type": "string"
          },
          "full_results": {
            "title": "Full Results",
            "description": "The full results, not summarized, if available. Always returns an array of objects.",
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        },
        "required": [
          "id",
          "action_used",
          "input_params",
          "review_url",
          "additional_results",
          "full_results"
        ]
      },
      "ErrorResponse": {
        "title": "ErrorResponse",
        "type": "object",
        "properties": {
          "error": {
            "title": "Error",
            "description": "Error message.",
            "type": "string"
          }
        },
        "required": [
          "error"
        ]
      },
      "RunRequest": {
        "title": "RunRequest",
        "description": "Try and stuff as much relevant information into the instructions as possible. Set any necessary AvailableActionSchema params. This type of action allows optionally setting preview_only if the user wants to preview before running.",
        "type": "object",
        "properties": {
          "instructions": {
            "title": "Instructions",
            "description": "Plain english instructions. Provide as much detail as possible, even if other fields are present.",
            "type": "string"
          },
          "preview_only": {
            "title": "Preview Only",
            "description": "If true, we will not run the action, but will do a dry-run and return a preview for the user to confirm.",
            "default": false,
            "type": "boolean"
          }
        },
        "required": [
          "instructions"
        ]
      }
    },
    "securitySchemes": {
      "AccessPointOAuth": {
        "type": "oauth2",
        "flows": {
          "authorizationCode": {
            "authorizationUrl": "/oauth/authorize/",
            "tokenUrl": "/oauth/token/",
            "scopes": {
              "nla:exposed_actions:execute": "Run AI Actions"
            }
          }
        }
      }
    }
  }
}
Use カレンダー自由自在ちゃん on 302.AI

カレンダー自由自在ちゃん GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "カレンダー自由自在ちゃん", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.

Best Alternative GPTs to カレンダー自由自在ちゃん on GPTs Store

📅 タスク管理AI

GoogleカレンダーのAPIと連携して、AIがあなたの予定管理を代行します。1. メールの文章を貼り付けるだけで、必要な予定をカレンダーに登録 2. タスクを優先順位付け&サブタスクに分解し、カレンダーに自動登録 3. 既存の予定を考慮し、ダブルブッキングを防止 4. 複数の予定を同時に登録・変更 5. タスク管理が楽しくなるカラフルなカレンダー🌈 #秘書 #スケジュール管理 / ✅会話データはモデルの学習に使用されないよう設定しました。/🛡制作者は会話の内容を閲覧できない仕組みです

5K+

メール文章をもとにGoogleカレンダーに予定を登録するリンクを発行するボット

メールの文章を貼り付けると、Googleカレンダーに予定を登録するリンクを発行するボットです。※URLは正しいかどうか、必ずご自身でテストしてください。

1K+

スケジュール管理GPT

スケジュール管理GPTは、個人の日々のスケジュール管理を助けるためのAIです。このGPTは、ユーザーの予定を整理し、リマインダーや通知を設定することができます。また、時間管理のヒントや効率的なスケジュールの提案も行います。カレンダーとの連携も可能で、予定の自動登録や変更が行えるようになっています。

1K+

Assistant

Assists with tasks on your computer - Automates Calendar/Mail/Messaging, Microsoft Office/Teams, Terminal, Gmail/Meet/Docs/Drive, Zoom, Spotify, Web Browsing and more

400+

自動カレンダーリンク作成

予定設定のメッセージをコピペして送信すると、簡単にグーグルカレンダーに予定を追加するリンクを作成できます。

100+

Calendrier Personnel

Génère des fichiers pour calendrier sur demande

100+

カレンダーGPT

あなたのGoogleカレンダーの予定を新規登録、確認、変更、削除することができます

100+

日程調整アシスタント

相手からのメール、自分のカレンダーのスクショ2枚を送ることで自動で日程候補出し、メール返信文まで作成

40+

GPT calendar

A GPT for Google Calendar would interpret natural language to manage events, acting as an intelligent assistant for scheduling, offering secure, personalized agenda management.

30+

カレンダー&メールGPT

カレンダー&メールGPT

30+

Agenda Automática

Provides .ics code for scheduling, with digital marketing expertise.

20+

カレンダーアプリに登録するための1行テキストを生成

メールなどの文章から、カレンダーアプリに登録するための1行テキストを生成します。

20+

Mission Assistant

Personalized mission management, scheduling, and emailing assistant.

10+

吉日カレンダー

吉日が2つ以上重なっている日を表示します。結婚式、宝くじを買う日などにご使用ください(自己責任で)。「年・月」をご入力ください。

10+

My Calendar Enhanced

Custom calendar creator with thematic images and date layout.

10+

LANA

Your name is LANA, which stands for Lender Analysis and Navigation Assistant. You are a senior lender docs reviewing/underwriting analyst at Rexera, our company. You review the lender/condo questionnaires we collect to fill out information into rexera's custom form having similar set of questions.

10+

ちゃんとGPT (スケジュールプランナー)

カレンダー形式でスケジュールを作成し、表示することができます。

10+

Racefinder

I provide dates and times for UCI World Tour races.

8+

Gandhi Wisdom

Guidance inspired by Gandhi's teachings on peace, non-violence, and truth.

4+

Jojo Scripts

Seu parceiro informal em automação e apps da Google.

1+