Skip to content

Configuration

APIs for managing configuration values that control how customers can access and consume line items.

All configuration

Request

Returns all configured values. If a configuration has been modified, the response includes the date of modification and the token key ID that was used to change configuration.

Security
AdministrationAccess
curl -i -X GET \
  https://siteID.flexnetoperations.com/dynamicmonetization/provisioning/api/v1.1/configuration \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Configuration was successfully returned.

Bodyapplication/json
Array [
namestring

The name of the configuration, one of:

  • timezone.tolerant
  • session.charge.period
  • safe.repeat.request.enabled
  • evaluation.apis.enabled
valuestring

The value of the configuration.

modifiednumberread-only

The date and time, in milliseconds since 1970-01-01 00:00 UTC, when the configuration was last modified. This field is returned only if the configuration has been changed from its default value.

updatedBystringread-only

Public key identifier of the JWT token that was used to update this configuration. This key ID allows you to identify the user or users who are authorized to make this change. This field is returned only if the configuration has been changed from its default value.

]
Response
[ { "name": "string", "value": "string", "modified": 0, "updatedBy": "string" } ]