GETユーザーAPI
GETユーザーAPIはアカウントからユーザーのリストを取得します。
動作方法
GETメソッドを使用してユーザーのリストを取得します:
GET /scim/v2/Users/
認証
すべてのAPI呼び出しにはSCIMベアラートークンが使用され、APIキーは使用されません。
詳細については、認証を参照してください。
GET操作のパラメータ
このコマンドは以下のパラメータを取ります:
| オブジェクト | タイプ | 必須 | 説明 | 
|---|---|---|---|
| count | 数値 | 任意 | 返すレコードの数。最大値は 100です。 | 
| startIndex | 数値 | 任意 | インデックスで返す最初のレコード。countがレコード数を超える場合、この値は無視されます。 | 
| userName | 文字列 | 任意 | ユーザー名に基づいてユーザーをフィルタリングします。同等の値を見つけるために eq演算子を使用します。 | 
例 cURLリクエスト
curl -H 'Authorization: Bearer {token}' \
https://api.tealiumiq.com/scim/v2/Users/startIndex=1&count=10&filter=userName%20eq%20%22user@example.com%22
例 応答
エラーメッセージ
このエンドポイントの潜在的なエラーメッセージ:
| エラーコード | エラーメッセージ | 
|---|---|
| 400 | {"schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"],"status": "400","scimType": "invalidValue","detail": "{parameter} must be a number." | 
| 401 | {"returnCode" : 1401 , "message" : "Authentication failed."} | 
| 403 | {"schemas": [ "urn:ietf:params:scim:api:messages:2.0:Error"],"status": "403","scimType": null,"detail": "Missing X-Tealium-Account header."} | 
| 405 | {"schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"],"status": "405","scimType": "invalidMethod","detail": "Method is not allowed on this endpoint. Allowed methods: GET, PUT, DELETE."} | 
| 500 | {"schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"],"status": "500","scimType": "internalServerError","detail": "Error processing json for extension - account {ACCOUNT}"} | 
最終更新日 :: 2025年October月29日