組織一覧・検索
GET
/organizations組織(経歴データ)を検索・一覧取得します。
| 認証 | 不要 |
|---|
クエリパラメータ
pagenumberページ番号(1 始まり)。デフォルト 1
perPagenumber1 ページあたりの件数。デフォルト 20
typestring組織タイプで絞り込み(完全一致)
searchstring検索キーワード(name / description)
レスポンス
| フィールド | 型 | 説明 |
|---|---|---|
organizations | Organization[] | 組織配列 |
pageInfo | object | ページ情報(totalCount / totalPages / page / perPage) |
リクエスト
curl https://api.4s.link/organizations \-H "Authorization: Bearer 4s_at_..."
レスポンス例
{"organizations": [{"id": "o1-...","name": "Acme Inc.","description": "...","websiteUrl": "https://acme.example.com","type": "COMPANY","logoUrl": "https://.../logo.png","slug": "acme","memberCount": 50}],"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }}