Update Configuration

This method allows the updating/overwriting of geometry dash configuration.

Request

name
value

url

https://dev.pulsoid.net/api/v1/geometry-dash-mod/configuration

method

POST

scope

geometry_dash_mod:configuration:write

Headers Parameters explained:

name
value
description

Authorization

Bearer {auth token}

Body Param Accepts JSON object with the following format. NOTE: This API overwrites the existing configuration, so the client should submit the full configuration every time.

Response

The response body in case 200 http status is a geometry dash mod configution .

Curl Request Example

curl --request POST \
  --url https://dev.pulsoid.net/api/v1/geometry-dash-mod/configuration \
  --header 'Authorization: Bearer 47ee2a9f-624d-4ed3-84db-8104b229f21c' \
  --header 'content-type: application/json' \
  --data '{
  "disable_start": true,
  "death_bpm": 1
}'

Response Example

{
  "configuration": {
    "disable_start": true,
    "enable_death": null,
    "death_bpm": 1,
    "scale": null,
    "position": null,
    "custom_x": null,
    "custom_y": null,
    "heart_pos": null,
    "death_pos": null,
    "enable_color_desaturation": null,
    "desaturation_bpm_start": null,
    "desaturation_bpm_end": null
  }
}

Last updated