Read list of service adaptors with completely matching management codes
Key |
Type |
Value |
---|---|---|
q |
String |
Search key (required)
|
See “ List of search results “
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."
}
]
}
If no matching content exists, a blank Array is returned as a response
Read list of service adaptors with partially matching management labels
Key |
Type |
Value |
---|---|---|
q |
String |
Search key (required)
|
See “ List of search results “
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." } ] }
If no matching content exists, a blank Array is returned as a response
Search key requires URL encoding (Ex.: “%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB” = “sample”)
Read list of service adaptors with matching SA codes
Key |
Type |
Value |
---|---|---|
q |
String |
Search key (required)
|
See “ List of search results “
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." } ] }
If no matching content exists, a blank Array is returned as a response
Read list of service adaptors with partially matching SA labels
Key |
Type |
Value |
---|---|---|
q |
String |
Search key (required)
|
See “ List of search results “
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." } ] }
If no matching content exists, a blank Array is returned as a response
Search key requires URL encoding (Ex: “SEIL%2FB1+001” = “SEIL/B1 001”)
Read list of service adaptors with matching Distribution IDs
Key |
Type |
Value |
---|---|---|
q |
String |
Search key (required)
|
See “ List of search results “
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." } ] }
If no matching content exists, a blank Array is returned as a response
Key |
Type |
Value |
---|---|---|
results |
Array |
List of search results
|