Skip to content

Instantly share code, notes, and snippets.

@nrm176
Last active February 4, 2023 02:39
Show Gist options
  • Save nrm176/74e837814e22d754036781175cf0187f to your computer and use it in GitHub Desktop.
Save nrm176/74e837814e22d754036781175cf0187f to your computer and use it in GitHub Desktop.

MongoDB Atlasとは

  • フルマネージドのクラウドDB。DBaaSのイメージでいいはず。AWS, Azure, GCP上にデプロイできる。
  • 0.5Gまでの無料枠あり

MongoDB Atlas Data APIとは

  • MongoDB Atlasに対してCRUDできるRest API
  • 使い所としては、ドライバーが使えない環境に最適
    • ノンコード・ローコード環境で使える
    • クラウド上のMongoDBコレクション(SQL脳的にはテーブル)からデータ取得してSalesforceに取り込むような使い方ができる。
  • MongoDB Rest APIとは違う

わかったこと

  • API Keyの作成時にcurlリクエストを自動生成してくれる(サンプル用として)
  • endpoint/data/v1/action/findやendpoint/data/v1/action/findOne等とアクションに応じてエンドポイントが変わるようだ。
  • POSTリクエストしてみた結果。

Screenshot 2023-02-04 at 11 13 45

参考資料

https://www.mongodb.com/docs/atlas/api/data-api/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment