Create User
POST https://core.amplitude.com/scim/1/Users/
Creates a new user within Amplitude, sends an invitation link to the email requested, and returns a 201
Resource Created response if successful. The ID and Username must be valid emails, and the user must not have been previously invited/provisioned to your Amplitude organization to succeed.
The request body for the POST
route should be a valid SCIM User Resource. Note the Groups field on the user will be ignored. If a user should be added to a group, please call the API routes pertaining to the group and not the user.
Request Body
{"schemas"=>["urn:ietf:params:scim:schemas:core:2.0:User"], "id"=>"<USER EMAIL>", "userName"=>"<USER EMAIL>", "name"=>{"givenName"=>"<USER GIVEN NAME>", "familyName"=>"<USER FAMILY NAME>"}, "emails"=>[{"value"=>"<USER EMAIL>", "primary"=>true}], "meta"=>{"resourceType"=>"User"}}
RESPONSES
status: Created
{"schemas":["urn:ietf:params:scim:schemas:core:2.0:User"],"id":"datamonster@amplitude.com","userName":"datamonster@amplitude.com","name":{"givenName":"data","familyName":"monster"},"active":true,"emails":[{"primary":true,"value":"datamonster@amplitude.com"}],"groups":[],"meta":{"resourceType":"User"}}