Password
Account password management
Authorizations
PRIVATE-TOKENstringRequired
Body
currentPasswordstringRequired
Current Password
newPasswordstringRequired
New Password
Responses
204
No Content
No content
401
Invalid credentials
429
Too many login requests performed
500
Internal Server Error
application/json
put/v3/account/password
PUT /v3/account/password HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 47
{
"currentPassword": "text",
"newPassword": "text"
}No content
Authorizations
PRIVATE-TOKENstringRequired
Body
emailAddressstringRequired
Main Email Address
Responses
204
No Content
No content
422
User is already logged in
500
Internal Server Error
application/json
post/v3/account/password/reset
POST /v3/account/password/reset HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 23
{
"emailAddress": "text"
}No content
Authorizations
PRIVATE-TOKENstringRequired
Body
newPasswordstringRequired
New Password
resetHashstringRequired
Reset Hash
Responses
204
No Content
No content
403
Invalid credentials
422
User is already logged in
500
Internal Server Error
application/json
put/v3/account/password/reset/validate
PUT /v3/account/password/reset/validate HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"newPassword": "text",
"resetHash": "text"
}No content
Last updated
Was this helpful?