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

Authorizations

Authorization
string
header
required

Basic authentication with username and password

Path Parameters

userid
number
required

User that should be updated.

Body

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

Response

200

User metadata updated.