Skip to content

Instantly share code, notes, and snippets.

@metadaddy
Created May 22, 2013 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metadaddy/5629297 to your computer and use it in GitHub Desktop.
Save metadaddy/5629297 to your computer and use it in GitHub Desktop.
Minimal example payload for user creation using Force.com REST API. Post this to https://instance.salesforce.com/services/data/v27.0/sobjects/User
{
"Username" : "user@example.com",
"Alias" : "user",
"Email" : "me@example.com",
"FirstName" : "Test",
"LastName" : "User",
"ProfileId" : "PROFILE_RECORD_ID",
"LanguageLocaleKey" : "en_US",
"LocaleSidKey" : "en_US",
"EmailEncodingKey" : "UTF-8",
"TimeZoneSidKey" : "America/Los_Angeles"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment