マネージメントコードが完全一致するサービスアダプタの一覧を取得する
Key |
Type |
Value |
---|---|---|
q |
String |
検索キー (必須)
|
検索結果一覧 を参照
URL
GET https://*.sacm.jp/public-api/v1/home/search/usercode?q=tsa99990001
Response Header
Content-Type: application/json
Response Body
{
"results": [
{
"distributionId": "0001-0000-0101-0000-0000-0000-1234-5678",
"saCode": "tss99990001",
"saName": "SEIL/B1 001",
"up": true,
"userCode": "tsa99990001",
"userName": "API Sample Inc."
}
]
}
一致する内容が存在しない場合はレスポンスとして空の配列(Array)が返却される
マネージメントラベルが部分一致するサービスアダプタの一覧を取得する
Key |
Type |
Value |
---|---|---|
q |
String |
検索キー (必須)
|
検索結果一覧 を参照
GET https://*.sacm.jp/public-api/v1/home/search/username?q=%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB
Content-Type: application/json
{ "results": [ { "distributionId": "0001-0000-0101-0000-0000-0000-1234-5678", "saCode": "tss99990001", "saName": "SEIL/B1 001", "up": true, "userCode": "tsa99990001", "userName": "API Sample Inc." } ] }
一致する内容が存在しない場合はレスポンスとして空の配列(Array)が返却される
検索キーはURLエンコードする必要がある (例: "%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB" = "サンプル")
検索結果の件数の上限は 1000 件までとなる
SAコードが完全一致するサービスアダプタを取得する
Key |
Type |
Value |
---|---|---|
q |
String |
検索キー (必須)
|
検索結果一覧 を参照
GET https://*.sacm.jp/public-api/v1/home/search/sacode?q=tss99990001
Content-Type: application/json
{ "results": [ { "distributionId": "0001-0000-0101-0000-0000-0000-1234-5678", "saCode": "tss99990001", "saName": "SEIL/B1 001", "up": true, "userCode": "tsa99990001", "userName": "API Sample Inc." } ] }
一致する内容が存在しない場合はレスポンスとして空の配列(Array)が返却される
SAラベルが部分一致するサービスアダプタの一覧を取得する
Key |
Type |
Value |
---|---|---|
q |
String |
検索キー (必須)
|
検索結果一覧 を参照
GET https://*.sacm.jp/public-api/v1/home/search/saname?q=SEIL%2FB1+001
Content-Type: application/json
{ "results": [ { "distributionId": "0001-0000-0101-0000-0000-0000-1234-5678", "saCode": "tss99990001", "saName": "SEIL/B1 001", "up": true, "userCode": "tsa99990001", "userName": "API Sample Inc." } ] }
一致する内容が存在しない場合はレスポンスとして空の配列(Array)が返却される
検索キーはURLエンコードする必要がある (例: "SEIL%2FB1+001" = "SEIL/B1 001")
検索結果の件数の上限は 1000 件までとなる
Distribution IDが完全一致、または下 16 桁ブロックで部分一致するサービスアダプタの一覧を取得する
Key |
Type |
Value |
---|---|---|
q |
String |
検索キー (必須)
|
検索結果一覧 を参照
GET https://*.sacm.jp/public-api/v1/home/search/distid?q=0001-0000-0101-0000-0000-0000-1234-5678
Content-Type: application/json
{ "results": [ { "distributionId": "0001-0000-0101-0000-0000-0000-1234-5678", "saCode": "tss99990001", "saName": "SEIL/B1 001", "up": true, "userCode": "tsa99990001", "userName": "API Sample Inc." } ] }
一致する内容が存在しない場合はレスポンスとして空の配列(Array)が返却される
部分一致での検索の場合、検索結果の件数の上限は 1000 件までとなる
接続状態が一致するサービスアダプタの一覧を取得する
Key |
Type |
Value |
---|---|---|
q |
String |
接続状態 (必須)
|
検索結果一覧 を参照
GET https://*.sacm.jp/public-api/v1/home/search/report-status?q=up
Content-Type: application/json
{ "results": [ { "distributionId": "0001-0000-0101-0000-0000-0000-1234-5678", "saCode": "tss99990001", "saName": "SEIL/B1 001", "up": true, "userCode": "tsa99990001", "userName": "API Sample Inc." } ] }
一致する内容が存在しない場合はレスポンスとして空の配列(Array)が返却される
Distribution ID が未割当の SA は検索の対象外となる
検索結果の件数の上限は 1000 件までとなる
モジュールバージョンが一致するサービスアダプタの一覧を取得する
Key |
Type |
Value |
---|---|---|
vendor |
String |
|
satype |
String |
|
module |
String |
|
version |
String |
|
op |
String |
|
config |
String |
|
Key |
Type |
Value |
---|---|---|
results |
Array |
検索結果の一覧
|
GET https://*.sacm.jp/public-api/v1/home/search/module-version?vendor=0&module=0&satype=15&version=7.7.0-0&op=eq&config=startup,working,running
Content-Type: application/json
{ "results": [ { "distributionId": "0001-0000-0101-0000-0000-0000-1234-5678", "saCode": "tss99990001", "saName": "SEIL/B1 001", "up": true, "userCode": "tsa99990001", "userName": "API Sample Inc.", "startup": { "results": [ { "moduleId": 0, "version": "7.7.0-0", "moduleName": "SEIL/B1 7.70 (Release)" } ] }, "running": { "results": [ { "moduleId": 0, "version": "7.7.0-0", "moduleName": "SEIL/B1 7.70 (Release)" } ] } } ] }
一致する内容が存在しない場合はレスポンスとして空の配列(Array)が返却される
検索結果の件数の上限は 1000 件までとなる
Key |
Type |
Value |
---|---|---|
results |
Array |
検索結果の一覧
|
モジュールIDが0のみを返却する
Key |
Type |
Value |
---|---|---|
results |
Array |
モジュール一覧
|