GamebeastDocs
Dashboard
Project APIConfigurations

Get configuration

GET
/application/{applicationId}/v2/configuration/{configurationId}

Retrieve a single configuration by ID, including its JSON content, privacy paths, comments, and metadata.

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
configurationId*number

Header Parameters

environment_id*number

Gamebeast environment ID

Response Body

application/json

curl -X GET "https://example.com/application/0/v2/configuration/0" \  -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}