GamebeastDocs
Dashboard
Project APIConfigurations

List configurations

GET
/application/{applicationId}/v2/configurations

List all configurations for the application and environment. Supports optional search filtering by name.

Authorization

personalAccessTokenAuth
AuthorizationBearer <token>

Personal access token (prefixed gb_pat_). Acts on behalf of its owner and can never exceed the owner's own permissions. Send it as Authorization: Bearer <token>.

In: header

Path Parameters

applicationId*number

Gamebeast project ID

Query Parameters

search?string

Header Parameters

environment_id*number

Gamebeast environment ID

Response Body

application/json

curl -X GET "https://example.com/application/0/v2/configurations" \  -H "environment_id: 0"
[  {    "id": 0,    "applicationId": 0,    "environmentId": 0,    "name": "string",    "alias": "string",    "description": "string",    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z",    "deletedAt": "2019-08-24T14:15:22Z",    "configuration": null,    "isPrivate": true,    "privateKeys": [      "string"    ],    "comments": {      "property1": "string",      "property2": "string"    },    "property1": null,    "property2": null  }]