Retrieve an application instance configuration

Request

Retrieves the configuration of an installed application with a specified ID.

Security
SecretApiKey or JWT or ApplicationJWT
Path
applicationIdstring, <= 50 characters^[@~\-\.\w]+$required

Unique identifier of the application.

curl -i -X GET \
  'https://www.rebilly.com/_mock/catalog/all/application-instances/{applicationId}/configuration' \
  -H 'REB-APIKEY: YOUR_API_KEY_HERE'

Responses

Application instance configuration retrieved.

Headers
Pagination-Totalinteger

Total number of items.

Example:332
Pagination-Limitinteger

Maximum number of items per page.

Example:100
Pagination-Offsetinteger

Specifies the starting point within the collection of resource results. For example, a request with limit=20 retrieves and displays the first 20 results on a page. A following request with limit=20 and offset=20, retrieves the next page of 20 results.

Example:2
Bodyapplication/json
settingsobjectrequired

Configuration settings for the application instance.

Example:
{ "color": "red", "level": "gold" }
Response
{ "settings": { "color": "red", "level": "gold" }, "_links": [ {} ] }