Searching all services

Request URL

POST https://http-collector-observability.sixthsense.rakuten.com/api-externalization/api-externalization/api/v1/services/search

Header

Header key - Authorization

Header value - Bearer {{access_token}} (Navigate to Settings > Access token > Show access token in the SixthSence portal.)

Request

{
"capability": "string",
"from": 0,
"keyword": "string",
"limit": 0,
"order": "ASC",
"sortBy": "serviceName"
}
ParametersDescription
keywordkeyword will be used to search service names
limitnumber of records to be returned
fromstarting no. of record
sortByserviceName
order
  • ASC : Ascending
  • DESC : Descending
  • capability
  • APM
  • Browser Monitoring
  • Synthetic Monitoring
  • Database Monitoring
  • VM Monitoring
  • Mobile Monitoring
  • Web Server Monitoring
  • Example:

    {
    "keyword": "name",
    "limit": 10,
    "from": 0,
    "sortBy": "serviceName",
    "order": "DESC",
    "capability": "APM"
    }

    Response

    {
    "data": {},
    "message": "string",
    "success": true
    }

    Example:

    {
    "message": "1 record(s) found",
    "success": true,
    "data": {
    "services": [
    {
    "serviceId": "eyduYW1lJzonbm9kZS1hcHAtMicsJ3RlYW1JRCc6JzU5ZWRkZDE1LTIwMjQtNDA1OS05OGFlLTc5YTJjZTViYTEzNCcsJ3R5cGUnOidBJ30=.1",
    "serviceName": "TestApp"
    }
    ],
    "total": 1
    }
    }