Update executor

Update your executor in our executors list
NOTE: Unlike other endpoints in this documentation, this endpoint is a POST endpoint.

The update endpoint allows you to update you executor's information in our executors list, including name, description, discord link, and much more.

API Path

The API path for this endpoint is /api/executor/update

Body

The endpoint accepts the following body:

KeyDescriptionRequiredTypeDefault
idThe name of the executor to updatestring-
api_keyThe API key of the executorstring-
nameNew name for the executorstring-
descriptionThe description of the executorstring-
platformThe platform the executor works oniOS | Android | Windows | macOS | Roblox VNG-
patchedWhether or not the executor is patchedboolean-
websiteExecutor websitestring-
discordThe discord server of the executorValid Discord link-
storeExecutor store linkstring-
versionThe version of the executor (for manual overrides, generally unnecessary if you set up a version endpoint)string-
playerVersionThe compatible client version (for manual overrides, generally unnecessary if you set up a version endpoint)string-
endpointThe version endpoint (for automatic version tracking)Valid URL-
developersThe list of developers, as a single stringstring-
updateWhether or not this should trigger a visible update on site (this should be turned off in case of, for example, typo fixes)booleantrue

Response

If the update succeeded, the following response will be returned:

{
    "message": "Executor updated successfully!"
}

If no changes were found (fields weren't provided or are matching the current ones), the following response will be returned:

{
    "message": "No changes detected!"
}

If an error occurs, the response will contain a single message field:

{
    "message": "string"
}

© 2025 ScriptBlox.
All rights reserved.