Supported Formats

json, xml

Errors

Code Description
401 Unauthorized - ensure token is being passed with each service call.
404 Unsupported operation
500 Unspecified error on server.
422 password and password_confirmation do NOT match

Examples

(json) Update email: PUT {"email": "test2@test.org"}
(xml) Update email and password:
<user>
  <email>test3@test.org</email>
  <password>testchange</password>
  <password_confirmation>testchange</password_confirmation>
</user>

Params

Param name Description
email
optional

Email address of the new user

Validations:

  • Must be a String

password
optional

Password for the new user

Validations:

  • Must be a String

password_confirmation
optional

Password again to ensure user didn't make a mistake

Validations:

  • Must be a String

first_name
optional

First name.

Validations:

  • Must be a String

last_name
optional

Last name.

Validations:

  • Must be a String