2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Microsoft Power PlatformAdvent Calendar 2023

Day 6

Sharepoint Lists に対してよく使う REST API の備忘録

Posted at

背景

Sharepoint Lists の自動化などでよく使う REST API
ついつい忘れがちなので、備忘録

Sharepoint Lists

目的 api MS Doc 補足
Lists 一覧 _api/web/lists REST を使用してリストとリスト アイテムを操作する
List 取得 by Title _api/web/lists
/getByTitle('{Title}')
対象List の items 一覧 _api/web/lists
/getByTitle('{Title}')/items
対象List の View 一覧 _api/web/lists
/getByTitle('{Title}')/views
View Properties(古い?)
対象List の View 取得 by Title _api/web/lists
/getByTitle('{Title}')/views
/getByTitle('{Title}')
対象List の View の Fileds 一覧 _api/web/lists
/getByTitle('{Title}')/views
/getByTitle('{Title}')/ViewFields
対象List の View の Fileds に Field 追加 _api/web/lists
/getByTitle('{Title}')/views
/getByTitle('{Title}')/ViewFields
/AddViewField
ViewFieldCollection methods
Site の user 一覧 _api/Web/SiteUsers SPWeb.SiteUsers Property UserのGUIDではなく、サイトに紐づいたIDが取得可能。というか、Actionで取る方法は無いのかな?あってもサイト指定になるから面倒かなぁ・・
自分の情報 _api/SP.UserProfiles.PeopleManager
/GetMyProperties
PeopleManager メソッド これで取れない事があれば?

あとがき

使ったときに更新することを忘れないようにしないと・・・ :sweat:

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?