# 목록
---
<br />**GET /api/v1/slo/list**
## 개요
## 쿼리 요청 매개변수
| 매개변수명 | 타입 | 필수 | 설명 |
|:-----------|:-------|:-----|:----------------|
| refSli | string | | 지정된 SLI UUID로, 해당 SLI를 포함하는 SLO를 반환합니다<br>빈 값 허용: True <br> |
| search | string | | SLO 이름<br>빈 값 허용: True <br> |
| tags | string | | 태그 이름으로 필터링하며, 여러 태그는 쉼표로 구분합니다<br>빈 값 허용: True <br>예: page_scope:status_page,site:cn1 <br> |
| tagMode | string | | 여러 태그의 일치 방식, 기본값 and<br>빈 값 허용: False <br>선택 가능 값: ['and', 'or'] <br> |
| pageIndex | integer | | 페이지 번호<br>빈 값 허용: False <br>예: 1 <br>$minValue: 1 <br> |
| pageSize | integer | | 페이지당 반환 개수<br>빈 값 허용: False <br>예: 10 <br>$minValue: 1 <br>$maxValue: 10000 <br> |
## 매개변수 추가 설명
## 요청 예제
```shell
curl 'https://openapi.guance.com/api/v1/slo/list?pageIndex=1&pageSize=2' \
-H 'Content-Type: application/json' \
-H 'DF-API-KEY: <DF-API-KEY>' \
{
"code": 200,
"content": {
"data": [
{
"alertPolicyInfos": [
{
"name": "lwc SLO Convert to Alert Policy Test",
"uuid": "altpl_xxxx"
}
],
"config": {
"checkRange": 604800,
"describe": "LWCTestOpenAPI",
"goal": 90.0,
"interval": "10m",
"minGoal": 60.0,
"sli_infos": [
{
"id": "rul_9eb74xxxxx",
"name": "whytest-Feedback Problem Verification",
"status": 2
},
{
"id": "rul_7a88xxxxx",
"name": "lml-tes",
"status": 0
}
]
},
"createAt": 1722913524,
"creator": "wsak_a2d55c91bxxxxx",
"deleteAt": -1,
"id": 4901,
"name": "LWC-Test-2024-08-06-002",
"score": 0,
"status": 0,
"tagInfo": [],
"type": "slo",
"updateAt": -1,
"updator": "",
"uuid": "monitor_5ebbxxxxxx",
"workspaceUUID": "wksp_4b57c7babxxxxxx"
},
{
"alertPolicyInfos": [],
"config": {
"checkRange": 604800,
"describe": "",
"goal": 99.0,
"interval": "5m",
"minGoal": 90.0,
"sli_infos": [
{
"id": "rul_7a88xxxxx",
"name": "lml-tes",
"status": 0
}
]
},
"createAt": 1722913303,
"creator": "acnt_35be770xxxxxx",
"deleteAt": -1,
"id": 4899,
"name": "lml-test3",
"score": 0,
"status": 0,
"tagInfo": [],
"type": "slo",
"updateAt": 1722913478,
"updator": "acnt_35be770xxxxxx",
"uuid": "monitor_7d0662bexxxxx",
"workspaceUUID": "wksp_4b57c7babxxxxxx"
}
],
"declaration": {
"asd": "aa,bb,cc,1,True",
"asdasd": "dawdawd",
"business": "aaa",
"fawf": "afawf",
"organization": "xxxxxx"
}
},
"errorCode": "",
"message": "",
"pageInfo": {
"count": 2,
"pageIndex": 1,
"pageSize": 2,
"totalCount": 43
},
"success": true,
"traceId": "10111844508613776745"
}
```