maton salesforce record create
Create a new record
maton salesforce record create [flags]
Options
-
--connection <string> - Connection ID to route through (Maton-Connection header)
-
--data <string> - Record fields as JSON (e.g. '{"FirstName":"John","LastName":"Doe"}')
-F,--data-from-file <string>- Read JSON record fields from a file (use - for stdin)
-
--dry-run - Print the request that would be sent without executing it
-
--format <string> - Output format: 'json' (default) or 'text' on supported commands
-q,--jq <expression>- Filter JSON output using a jq expression
-
--paginate - Follow next_cursor and concatenate all pages (list commands only)
-
--template <string> - Format JSON output using a Go template; see "maton help formatting"
-
--type <string> - sObject type (required, e.g. Contact, Account, Lead, Opportunity, Case)
Options inherited from parent commands
-p,--profile <string>- Profile to use for this invocation (overrides the active profile; also reads MATON_PROFILE)
Examples
$ maton salesforce record create --type Contact --data '{"FirstName":"John","LastName":"Doe"}'
$ maton salesforce record create --type Account --data-from-file account.json
$ cat account.json | maton salesforce record create --type Account -F -