For the complete documentation index, see llms.txt. This page is also available as Markdown.

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}
INVALID REQUEST TYPE
INVALID COMMUNITY ID
API IS NOT ENABLED FOR THIS COMMUNITY
INVALID API KEY
API ID NOT LINKED TO AN ACCOUNT IN THIS COMMUNITY
{
    "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?