Step 1. Adding Custom Fields to your Story Chief account

If your website/blog uses some custom fields, we can provide these for you. An example of custom fields might be a special Call To Action button on your website where you can specify the button text and the button link.

Once we added these custom fields to your Story Chief account you'll be able to add these values to any of your stories.

We provide following types of fields: select, checkbox, radiobuttons, text, textarea and image.

Step 2. Mapping your custom fields 

You'll receive the value of these fields in an easy key-value format, through the same webhook as usual. An example output would be. You can map these values as you see fit. 

{ 
  "meta":{
      "type":"publish",      "mac":"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92"
   }
   "data":{
      "external_id":null,      
      ...
      "custom_fields": [
         {
            "key": "cta_text",
            "value": "Buy now!"
         },
         {
            "key": "cta_link",
            "value": "https://my-awesome-website/product-1"
         }
      ],
      ...
   }
}

Did this answer your question?