Delete Platform Accounts
Request
Method: POST
URL: /api/deleteAccount
| Field | Type | Required |
|---|---|---|
| id | int | yes |
| accounts | array | yes |
Each item can be:
- a string — matches
username_valueonly (ambiguous across sites), or - an object —
{ "origin_url", "username_value" }
json
{
"id": 1,
"accounts": [
{ "origin_url": "https://example.com", "username_value": "user2" }
]
}Response
json
{ "success": true }