v1

latestOpenAPI 3.0.32026-07-26120117318.1 KB
Remote Configurations

Get the payload values

Returns the payload values — the actual JSON object delivered to the SDK for this configuration ({} when unset). This is distinct from the payload mapping, which describes the key → type schema.

get/remote-configurations/{config_id}/payload

Path parameters

config_idstring required

Remote configuration identifier.

Response

Payload values

objectstring required
urlstring required
config_idstring required
dataobject required

The JSON values served to the SDK. Always a JSON object — {} when unset, never an array.

Example response

{
  "object": "remote_config_payload",
  "url": "/v4/remote-configurations/82a42dc2-76f6-46c2-b883-846acaf2070a/payload",
  "config_id": "82a42dc2-76f6-46c2-b883-846acaf2070a",
  "data": {
    "button_color": "#FF0000",
    "max_items": 5
  }
}