Log into Erply API: authenticate yourself with a user name and password.
Each communication session with Erply API must begin with a call to verifyUser
. Successful log-in will give you a session key; include it with every subsequent API call. (Send it as input parameter "sessionKey").
By default, session will last for one hour. When session expires, all API calls will start returning a 1054 or 1055 error; this is an indication that you should call verifyUser
again to receive a fresh session key.
We recommend that you build authentication and session keep-alive into your API wrapper class — so that it automatically refreshes session key when it is about to expire, and is able to re-authenticate and re-issue an API call if it receives error 1054/1055.
If logging in does not succeed, verifyUser
returns error 1050, 1051 or 1052. To get session user info without creating a new session see getSessionKeyUser
Parameter name | Description | Possible value | Required |
---|---|---|---|
username | User name | string | yes |
password | Password | string | yes |
sessionLength | Desired session length in seconds (1...86400 sec). If you omit the parameter, or specify 0 or a negative value, a session with a default length of 3600 will be created. If you specify a value larger than 86400 seconds, session length will be set to 86400 seconds. |
integer | |
doNotGenerateIdentityToken | If set to 1, then API will NOT return parameter "identityToken". | Integer (1 or 0) |
Field name | Type | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
userID | integer | ID of the user account | |||||||||||||||
userName | string | The same username that was passed as input | |||||||||||||||
employeeID | integer | ID of the company employee that has the abovementioned user account | |||||||||||||||
employeeName | string | ||||||||||||||||
groupID | integer | ID of the user group where the user belongs | |||||||||||||||
groupName | string | name of the user group | |||||||||||||||
ipAddress | string | IP address of the API client. | |||||||||||||||
sessionKey | string | session identifier, to be used for subsequent API calls. | |||||||||||||||
sessionLength | integer | time after which the session key expires (in seconds). | |||||||||||||||
isPasswordExpired | Boolean | If password rotation is enabled on the account then this will indicate if the users password needs to be changed. | |||||||||||||||
loginUrl | string | URL from where user can log into Erply backend, through web browser. This URL does not affect API usage and should not be used for sending API calls. |
|||||||||||||||
berlinPOSVersion | string | Application-specific field for Erply's Berlin POS. Indicates the version number (typically an integer) of the live / production POS version that is appropriate for this customer — or the version that has specifically been configured for this customer. This field does not mean that the customer is definitely using Berlin POS. The customer may be using other POS products or not using a POS at all. Also, API does not currently provide a POS version number for preproduction / staging / testing. |
|||||||||||||||
berlinPOSAssetsURL | string | Application-specific field for Erply's Berlin POS. Indicates the URL from where POS can load its static assets. The URL does not include and does not depend on POS version number. POS should append version number to the URL, or perform some other transformation if needed. |
|||||||||||||||
epsiURL | string | Application-specific field for Erply's Berlin POS. Indicates the location of the JNLP file for Erply Point Of Sale Integrator (EPSI), which provides support for various POS hardware. | |||||||||||||||
cayanGatewayURLs | array | Application-specific field for Berlin POS - returned only for Berlin POS. List of Cayan (Merchant Warehouse) payment gateway URLs for this particular account. This only specifies the most appropriate service endpoints for the account to use; it does not indicate that the account is actually using Cayan payment integration. This array may contain 0 or more records. If Cayan support has been disabled in this server, the array will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
avalaraGatewayURLs | array | Application-specific field for Berlin POS - returned only for Berlin POS. URLs of gateways to the Avalara tax calculation service. This only specifies the most appropriate service endpoints to use, if needed, and does not indicate that the account is actually using Avalara integration. This array may contain 0 or more records. If Avalara support has been disabled in this server, the array will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
pusherAuthenticationURLs | array | Application-specific field for Berlin POS - returned only for Berlin POS. URLs of gateways to the Pusher messaging service, for this particular account. This array may contain 0 or more records. If Pusher support has been disabled in this server, the array will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
strikeIronGatewayURLs | array | Application-specific field for Berlin POS - returned only for Berlin POS. URLs of gateways to the StrikeIron (Informatica) tax rate lookup service, for this particular account. This array may contain 0 or more records. If StrikeIron support has been disabled in this server, the array will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
customerRegistryURLs | array | Information about standalone customer registry service. This array may contain 0 or more records. If account does not use a standalone customer registry (customers are stored in Erply as usual), this list will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
couponRegistryURLs | array | Information about standalone coupon registry service. This array may contain 0 or more records. If account does not use a standalone coupon registry (coupons are stored in Erply as usual), this list will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
transactionRegistryURLs | array | Information about standalone transaction registry service. This array may contain 0 or more records. If account does not use a standalone transaction registry (transactions are stored in Erply as usual), this list will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
displayAdManagerURLs | array | Information about the service that provides advertisements to the point-of-sale customer display screen. (This information is meant for Berlin POS.) This array may contain 0 or more records. If account has not been configured to use the advertisement manager, this list will be empty. Otherwise it will contain at least one record. Each record in the array contains the following fields:
|
|||||||||||||||
epsiDownloadURLs | array | Provides URLs with downloadable packages for EPSI (Erply point of sale integrator) installation. Provides a record per each operating system with installation link. Each record in the array contains the following fields:
|
|||||||||||||||
identityToken | string | Deprecated. Provides Identity API Json Web Token Can be used with integrations that require the JWT for authentication. This can also be retrieved with getIdentityToken with a session key without username and password. |
|||||||||||||||
token | string | Replaces identityToken. Provides an Erply generated JWT token. Can be used with integrations that require the JWT for authentication. This can also be retrieved with getJwtToken with a session key without username and password. |