Send Password

Organizers can have their passwords emailed to them using this method.

Method Info
Url https://www.payit2.com/api/v1/organizer/send-password
Verb POST
Headers X-PayItSquare-AppKey
Input
Property Data Type Validation Info
EmailAddress String
Output
Property Data Type Other Info
IsSuccess Boolean Indicates if the call was successful or not.
Messages String Array Will contain a list of error messages if IsSuccess is false
Sample Input
{
  "EmailAddress": "myaddress@myemail.com"
}
Sample Success Response
{
  "IsSuccess": true,
  "Messages": []
}    
Sample Error Response
{
  "IsSuccess": false,
  "Messages": [
    "Email address is invalid."
  ]
}