Files
dromara--domain-admin/docs/domain/deleteDomainById.md
T
2026-07-13 12:31:34 +08:00

39 lines
421 B
Markdown

# 删除域名
1、请求地址:/api/deleteDomainById
2、请求方式:POST
3、请求参数
| 参数 | 类型 | 必须 | 说明 |
| -| - | - | - |
|id | int | 是 | 域名id
4、返回参数
5、请求示例
```
POST {{baseUrl}}/api/deleteDomainById
Content-Type: application/json
X-Token: <token>
{
"id": 1
}
```
6、返回示例
```json
{
"code": 0,
"data": null,
"msg": "success"
}
```