Insert lead/client record
documentedInsert a new Lead/Client record into Credit Repair Cloud.
POST /api/lead/insertRecordLead/Clientno 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://app.creditrepaircloud.com/api/lead/insertRecord?apiauthkey={{CREDITREPAIRCLOUD_API_KEY}}&secretkey={{CREDITREPAIRCLOUD_SECRET}}" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/xml" \
-d 'xmlData=<crcloud><lead><type>Client</type><firstname>{{$firstname}}</firstname><lastname>{{$lastname}}</lastname><email>{{$email}}</email><phone_home>{{$phone_home}}</phone_home><phone_mobile>{{$phone_mobile}}</phone_mobile><street_address>{{$street_address}}</street_address><city>{{$city}}</city><state>{{$state}}</state><zip>{{$zip}}</zip></lead></crcloud>'