Create a Record (Beta)

AVAILABLE API VERSION
API v59.0 and later

Use mutations to create a record. Within mutations, the RecordCreate field enables you to create all object types your Salesforce user has access to. Only objects supported by UI API are available for mutations.

To create a record, use RecordCreate with field values for the record you want to create.

A response is returned when record creation is successful. To define the fields you want to return in the response body, use the Record field. You can return the Id and selected fields from your record creation.

For example, create an account with the required name field.

The response body returns the fields you request under Record.

Given the account Id returned by the account record creation, let's create an associated contact for that account. This example uses the record Id from the example, 001RM000005fdQuYAI. Replace the account Id with your own.

The response body returns the fields you request under Record.

Consider these guidelines when creating a record.

  • For compound fields, use the constituent fields. For example use FirstName and LastName instead of Name.
  • For numerical field values, such as integers or currency, use the raw values. For example, use 80000 instead of 80,000 and don't include currency symbols.
  • Sending a create request with field values that don't match the supported format returns a ValidationError. Use the appropriate format for the field, such as YYYY-MM-DD for date fields.
  • Sending a create request with duplicate values can return a DataFetchingException error. Review your duplicate rules and make sure you're not creating a duplicate record.

Send Mutation Requests