Add a contact
documentedCreate a new contact for a customer.
POST /api/v3/userUsers / Contactsno 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://{{$site_domain}}.chargeover.com/api/v3/user" \
-X POST \
-H "Authorization: Basic {{CHARGEOVER_SECRET}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"external_key":"{{$external_key}}","username":"{{$username}}","password":"{{$password}}","name":"{{$name}}","first_name":"{{$first_name}}","middle_name_glob":"{{$middle_name_glob}}","last_name":"{{$last_name}}","name_suffix":"{{$name_suffix}}","title":"{{$title}}","email":"{{$email}}","phone":"{{$phone}}","mobile":"{{$mobile}}","user_type_id":{{$user_type_id}},"customer_id":{{$customer_id}},"custom_1":"{{$custom_1}}","custom_2":"{{$custom_2}}","custom_3":"{{$custom_3}}","custom_4":"{{$custom_4}}","custom_5":"{{$custom_5}}","custom_6":"{{$custom_6}}","custom_7":"{{$custom_7}}","custom_8":"{{$custom_8}}","custom_9":"{{$custom_9}}","custom_10":"{{$custom_10}}","custom_11":"{{$custom_11}}","custom_12":"{{$custom_12}}","custom_13":"{{$custom_13}}","custom_14":"{{$custom_14}}","custom_15":"{{$custom_15}}","custom_16":"{{$custom_16}}","custom_17":"{{$custom_17}}","custom_18":"{{$custom_18}}","custom_19":"{{$custom_19}}","custom_20":"{{$custom_20}}"}'