Create account
documentedCreate a new Account record.
POST /api/data/v9.2/accountsDataverseno 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://{{$organization_uri}}/api/data/v9.2/accounts" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json; charset=utf-8" \
-H "Accept: application/json" \
-H "OData-MaxVersion: 4.0" \
-H "OData-Version: 4.0" \
-H "Prefer: return=representation" \
-d '{"name": "{{$name}}", "description": "{{$description}}", "address1_city": "{{$city}}", "address1_stateorprovince": "{{$state}}", "address1_postalcode": "{{$postal}}", "telephone1": "{{$phone}}", "revenue": {{$revenue}}, "creditonhold": {{$creditonhold}} }'