Update affiliate record
documentedUpdate an existing Affiliate record.
POST /api/affiliate/updateRecordAffiliateno 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/affiliate/updateRecord" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/xml" \
-d 'apiauthkey={{CREDITREPAIRCLOUD_API_KEY}}&secretkey={{CREDITREPAIRCLOUD_SECRET}}&xmlData=<crcloud> <affiliate> <id>{{$affiliate_id}}</id> <type>{{$type}}</type> <firstname>{{$firstname}}</firstname> <lastname>{{$lastname}}</lastname> <gender>{{$gender}}</gender> <company>{{$company}}</company> <company_url>{{$company_url}}</company_url> <email>{{$email}}</email> <phone>{{$phone}}</phone> <phone_ext>{{$phone_ext}}</phone_ext> <alternate_phone>{{$alternate_phone}}</alternate_phone> <fax>{{$fax}}</fax> <mailing_address>{{$mailing_address}}</mailing_address> <city>{{$city}}</city> <state>{{$state}}</state> <post_code>{{$post_code}}</post_code> <internal_note>{{$internal_note}}</internal_note> </affiliate> </crcloud>'}