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

{&quot;schemas&quot;:[&quot;urn:ietf:params:scim:schemas:core:2.0:User&quot;],&quot;id&quot;:&quot;datamonster@amplitude.com&quot;,&quot;userName&quot;:&quot;datamonster@amplitude.com&quot;,&quot;name&quot;:{&quot;givenName&quot;:&quot;data&quot;,&quot;familyName&quot;:&quot;monster&quot;},&quot;active&quot;:true,&quot;emails&quot;:[{&quot;primary&quot;:true,&quot;value&quot;:&quot;datamonster@amplitude.com&quot;}],&quot;groups&quot;:[],&quot;meta&quot;:{&quot;resourceType&quot;:&quot;User&quot;}}