Skip to main content

Retrieve Configuration

GET/v1/keys/{key}/configs/{config}

Returns a configuration by name. This request needs no user_token, so a browser integration can read its own configuration at runtime.

Path parameters

key string

API Key

The API Key to retrieve. Begins ak_.

Example ak_test
config string

Configuration Name

User-provided configuration object name.

Example checkout-form

Response

Returns the configuration object with its name, payload, and timestamps.

  • result Config
    • updatedAt string

      Timestamp for when the config was created

      Example
      2016-01-21T17:14:49.971Z
    • createdAt string

      Timestamp for when the config was updated

      Example
      2016-01-21T17:14:49.971Z
    • name string

      A unique name to identify the configuration payload

      Example
      woocommerce
    • payload string

      A serialised payload of up to 65536 characters

      Example
      { "removeOrganisation": false }

The result sits inside the standard { result, code, message } envelope — see the API reference for the wrapper format.