POST
/
users
Create a new user.
curl --request POST \
  --url https://api.smartermeasure.com/v3/users \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "GroupKey": 123,
  "FirstName": "<string>",
  "LastName": "<string>",
  "Email": "<string>",
  "InternalID": "<string>",
  "Gender": "M",
  "EthnicityID": 123,
  "AgeRange": "<string>",
  "HowManyCoursesTaken": "<string>",
  "Custom": {}
}'

Authorizations

Authorization
string
header
required

Basic authentication with username and password

Body

application/json
GroupKey
number
required
FirstName
string
required
LastName
string
required
Email
string
required
InternalID
string
Gender
enum<string>
Available options:
M,
F
EthnicityID
number
AgeRange
string
HowManyCoursesTaken
string
Custom
object

Response

201

User created.