Add record
documentedAdd a record by sending an XML payload with fields and values; uses QUICKBASE-ACTION: API_AddRecord.
POST /db/{dbid}Recordsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$domain}}/db/{{$dbid}}" \
-X POST \
-H "Content-Type: application/xml" \
-H "Accept: application/xml" \
-H "QUICKBASE-ACTION: API_AddRecord" \
-d '<qdbapi>
<ticket>{{$ticket}}</ticket>
<apptoken>{{$apptoken}}</apptoken>
<field fid="6">{{$field_6}}</field>
<field fid="7">{{$field_7}}</field>
<udata>{{$udata}}</udata>
</qdbapi>'