> For the complete documentation index, see [llms.txt](https://api-kit.prix.im/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-kit.prix.im/platform/remove-managed-business.md).

# 생성한 비즈니스 삭제 API

플랫폼 서비스에서 생성한 비즈니스 계정을 삭제할 수 있도록 API를 제공합니다.

<br>

## `DELETE` kit-api/v1/business/managing/\[managedBusinessUuid]

Method: DELETE\
Endpoint: kit-api/v1/business/managing/\[managedBusinessUuid]

<br>

## Example

```
.../kit-api/v1/business/managing/686961a8-3975-4ad5-bf4e-134706efee15
```

<br>

## Request Path 파라미터

| Key                 | Description        | Required |
| ------------------- | ------------------ | -------- |
| managedBusinessUuid | 삭제할 비즈니스의 식별값 UUID | yes      |

<br>

## Response

```json
{
  "ok": true
}
```

```json
{
  "ok": false, // api 실패
  "message": "error message", // Error가 존재하면 message(string)로 전달
  "errorCode": "ERROR_CODE"
}
```

<br>

## Error Codes

| Status Code | Error Code               | Description                               |
| ----------- | ------------------------ | ----------------------------------------- |
| 401         | UNAUTHORIZED\_API\_KEY   | API Key가 유효하지 않은 경우                       |
| 403         | FORBIDDEN\_BUSINESS\_KEY | API Key에 이 API를 사용할 권한이 존재하지 않는 경우        |
| 403         | FORBIDDEN\_BUSINESS      | 해당 API Key로 생성한 비즈니스가 아닌 경우               |
| 404         | NOT\_FOUND\_BUSINESS     | API Key에 연결된 비즈니스 또는 삭제할 비즈니스가 존재하지 않는 경우 |

<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://api-kit.prix.im/platform/remove-managed-business.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
