Remove Character

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

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

Name
Type
Description

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

Was this helpful?