URL
https://accounts.zoho.com/login
HTTP Method
POST
Parameters
|
| LOGIN_ID | Required. | Zoho Username or Email ID of a particular user. |
| PASSWORD | Required. | Password for the Zoho Username |
| FROM_AGENT | Required. | Value should always be set to "true" |
| servicename | Required. | Value should be ZohoCreator |
Notes
- The parameter names passed in the POST request are case-sensitive.
- A Ticket will remain valid for 7 days, if you do not update your application with a new ticket ID you will receive this error for your API requests:
4834 - Invalid Ticket ID
Sample Request
<form method="POST" action="https://accounts.zoho.com/login" target="_self">
<input type="hidden" name="LOGIN_ID" value="[ZOHO Username or Email ID]">
<input type="hidden" name="PASSWORD" value="[Password for ZOHO ID]">
<input type="hidden" name="FROM_AGENT" value="true">
<input type="hidden" name="servicename" value="ZohoCreator">
<input type="submit" value="Generate Ticket" name="submit">
</form>
Sample Response
Depending on the parameters passed over the HTTP POST request, you will get a response in the following name/value format:
#Thu Oct 26 02:17:49 PST 2009
WARNING=
TICKET=543754375sdferuecmvc458545432dfffqq
RESULT=TRUE
Response details:
- #Comment -- Ticket generated date
- WARNING -- If the parameters passed in the URL are incorrect, the user will get a warning message stating the same otherwise the value will be null.
- TICKET -- Ticket generated for the request
- RESULT -- Value is true if the ticket is generated successfully otherwise it is false.