Skip to main content
GET
/
api
/
setup-scripts
List all setup scripts.
curl --request GET \
  --url https://api.rigbox.dev/api/setup-scripts \
  --header 'Authorization: Bearer <token>'
{
  "scripts": [
    {
      "content": "<string>",
      "created_at": "<string>",
      "id": "<string>",
      "name": "<string>",
      "run_on": "<string>",
      "script_order": 123,
      "source": "<string>",
      "updated_at": "<string>",
      "user_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of setup scripts

scripts
object[]
required