접속 체크 비활성화
지정한 접속 프로파일들의 주기적 연결 상태 확인을 비활성화합니다.
HTTP 요청
POST /api/sonar/connect-profiles/:guid/disable-connection-check
cURL 예시
curl -H "Authorization: Bearer <API_KEY>" \
-d '{"guids":"a1b2c3d4-e5f6-7890-abcd-ef1234567890,b2c3d4e5-f6a7-8901-bcde-f12345678901"}' \
-X POST https://HOSTNAME/api/sonar/connect-profiles/a1b2c3d4-e5f6-7890-abcd-ef1234567890/disable-connection-check
요청 매개변수
| 키 | 필수 | 타입 | 설명 | 비고 |
|---|---|---|---|---|
| guids | O | 문자열 | 접속 프로파일 식별자 목록 | 쉼표(,)로 구분된 프로파일 식별자 목록 |
정상 응답
{
"failures": []
}
오류 응답
필수 매개변수가 누락된 경우
HTTP 상태 코드 400 응답
{
"error_code": "null-argument",
"error_msg": "guids should be not null"
}
식별자가 GUID 형식이 아닌 경우
HTTP 상태 코드 400 응답
{
"error_code": "invalid-param-type",
"error_msg": "guids should be guid type."
}