Perform tasks associated with users including resending invitations and resetting passwords.

POST /users/{id}/@/resend-invite

DescriptionResend the invitation email to a new user.
Permissionsuser.manage
Resource URLhttps://app.klipfolio.com/api/1.0/users/{id}/@/resend-invite
FieldsNone.

Example Request

POST https://app.klipfolio.com/api/1/users/0123456789abcdef0123456789abcdef/@/resend-invite
##Example Response

{
 "meta": { "success": true, "status": 200 },
 "data": { "op_requested": "resend-invite" }
}

POST /users/{id}/@/reset-password

DescriptionReset a user password.
Permissionsuser.manage
Resource URLhttps://app.klipfolio.com/api/1.0/users/{id}/@/reset-password
FieldsNone.

Example Request

POST https://app.klipfolio.com/api/1/users/0123456789abcdef0123456789abcdef/@/reset-password

Example Response

{
 "meta": { "success": true, "status": 200 },
 "data": { "op_requested": "reset-password" }
}