Remove Character

This endpoint allows you to remove a character associated with a CAD account.

This API endpoint requires the plus version of Sonoran CAD or higher. For more information, see our pricing page.

Characters can NOT be removed from communities using Database Sync, as all characters are pulled from your server's in-game database.

Remove Character

POST https://api.sonorancad.com/civilian/remove_character

This endpoint allows you to remove a character associated with a CAD account.

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

REMOVE_CHARACTER

data

array

Array of character objects

CHARACTER {ID} REMOVED FOR {USERNAME}
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "REMOVE_CHARACTER",
    "data": [
        {
            "id": -1, // Unique character ID - Use GET_CHARACTERS to retrieve
        },
    ]
}

Last updated