v1
latestOpenAPI 3.0.32026-07-26120117318.1 KBRemote Configurations
Replace the payload values
Replaces the payload values delivered to the SDK. Full replace: the supplied data object entirely overwrites the stored payload — to change one key, read the current payload, modify it, and send the whole object back. An empty object {} clears the payload. Requests are limited to 64 KiB.
put/remote-configurations/{config_id}/payload
Path parameters
config_idstring required
Remote configuration identifier.
Request body
Example request
{
"data": {
"button_color": "#FF0000",
"max_items": 5
}
}Response
Updated payload values
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
}
}