Searching all services
Request URL
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"
}
| Parameters | Description |
|---|---|
| keyword | keyword will be used to search service names |
| limit | number of records to be returned |
| from | starting no. of record |
| sortBy | serviceName |
| order | |
| capability |
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
}
}