v1

latestOpenAPI 3.0.32026-07-26120117318.1 KB
Remote Configurations

Get the payload mapping

Returns the payload mapping — the key → type schema that tells the SDK how to interpret each payload key. This is the schema, not the values: see the payload endpoint for the JSON values delivered to the SDK.

get/remote-configurations/{config_id}/payload-mapping

Path parameters

config_idstring required

Remote configuration identifier.

Response

Payload mapping

objectstring required
urlstring required
config_idstring required
dataobject required

Flat map of payload key to its SDK-side type.

Example response

{
  "object": "payload_mapping",
  "url": "/v4/remote-configurations/82a42dc2-76f6-46c2-b883-846acaf2070a/payload-mapping",
  "config_id": "82a42dc2-76f6-46c2-b883-846acaf2070a",
  "data": {
    "button_color": "Color",
    "max_items": "Number"
  }
}