Glowb Dev Docs
SaaS APICollab 이벤트 API

DELETE /ai/collab/del/{no}

캠페인 삭제

캠페인 삭제

캠페인을 삭제합니다.

항목
메서드DELETE
경로/ai/collab/del/\{no\}
인증필요

이 작업은 되돌릴 수 없습니다.

요청

DELETE /ai/collab/del/123 HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
curl -X DELETE "https://api.glowb.com/ai/collab/del/123" \
  -H "Authorization: Bearer {access_token}"
const response = await fetch(`/ai/collab/del/${campaignNo}`, {
  method: 'DELETE',
  headers: {
    'Authorization': `Bearer ${accessToken}`
  }
});

Path Parameters

Prop

Type

응답

성공 응답 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "캠페인이 삭제되었습니다.",
  "data": null
}

API 테스트

On this page