For the complete documentation index, see llms.txt. This page is also available as Markdown.

Password

Account password management

Change the password

put
Authorizations
PRIVATE-TOKENstringRequired
Body
currentPasswordstringRequired

Current Password

newPasswordstringRequired

New Password

Responses
204

No Content

No content

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

Reset the password

post
Authorizations
PRIVATE-TOKENstringRequired
Body
emailAddressstringRequired

Main Email Address

Responses
204

No Content

No content

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

Validate the reset password

put
Authorizations
PRIVATE-TOKENstringRequired
Body
newPasswordstringRequired

New Password

resetHashstringRequired

Reset Hash

Responses
204

No Content

No content

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?