Record to AirTable record converter

[apis/airtable/utils/Record to AirTable record converter]


Converts a plain record to an AirTable record. Example:

  1. record receives:

{<br>
  "string column": "value0",<br>
  "number column": 0,<br>
  "bool column": false<br>
}<br>
```<br>
2. `AT record` sends:<br>
```json<br>
{<br>
  "fields": {<br>
    "string column": "value0",<br>
    "number column": 0,<br>
    "bool column": false<br>
  }<br>
}<br>
```<br>

---

__Keywords__: airtable, convert

### Input ports

* __record__: ` {string: any} `

    Receives the record to convert.<br>
    <br>
    Example:<br>
    ```json<br>
    {<br>
      "string column": "value0",<br>
      "number column": 0,<br>
      "bool column": false<br>
    }<br>

### Output ports

* __AT record__: ` {"fields": {string: any}} `

    Sends the converted record.<br>
    <br>
    Example:<br>
    ```json<br>
    {<br>
      "fields": {<br>
        "string column": "value0",<br>
        "number column": 0,<br>
        "bool column": false<br>
      }<br>
    }<br>
    ```<br>

Last updated