Added

Envelope creation now supports radio fields

Create or send envelope endpoint now accepts radio as a field_payload type, along with a new property radio_positions, which defines the positions of the radio group.

...
{
  "fields_payload": [
    {
      "type": "radio",
      "recipient_id": 1,
      "source_id": 1,
      "page_number": "1",
      "required": 1,
      "radio_positions": [
        {
          "x": 100,
          "y": 200,
          "width": 20,
          "height": 20,
          "mode": "fixed"
        },
        {
          "x": 100,
          "y": 240,
          "width": 20,
          "height": 20,
          "mode": "fixed"
        }
      ]
    }
  ]
}
...