REST API¶
EspoCRM is a single page application so the frontend uses REST API to connect with the backend. All operations you perform using the UI, you can implement via API calls using your programming language. You can learn how the API works if you trace what's going in the network tab in your browser console (press F12 key to open the console).
Most of API functions return JSON. POST and PUT requests usually need some data passed in the payload in JSON format. Whenever you send the JSON payload, add the header: Content-Type: application/json
.
The path to the API in EspoCRM is: api/v1/
.
Example of GET API request
GET https://address_of_your_crm/api/v1/Contact/55643ca033f7ab4c5
In this documentation we omit the site URL and api/v1/
path when we show examples of API functions. If you utilize any our client implementation, it will prepend these URL parts automatically.
Note
API client implementations (available below) do most of work for you: add needed headers, handle authentication, parameters, etc.
In this article:
API functions:
- CRUD operations – create, read, update, delete
- Related records
- Stream
- CurrencyRate
- Attachment
- I18n
- Metadata
- Account
See also:
Client implementations¶
Setting up¶
It's recommended to create a separate API User with specific permissions (defined by Roles) and use this user for API calls. You can have multiple API Users for different purposes, give each user specific permissions.
See in the tutorial how to get started.
Client implementations require specifying the Site URL. It's an URL that you open in the browser to use EspoCRM.
Authentication¶
Authentication by API Key¶
The simplest method of authentication. You need to create an API User (Administration > API Users) with the API Key authentication method. Apply a needed role to the user to grant access to specific scopes.
Authentication header:
X-Api-Key: API_KEY_COPIED_FROM_THE_USER_DETAIL_VIEW
HMAC Authentication¶
The most secure method. You need to create an API User (Administration > API Users) with the HMAC authentication method. Apply a needed role to the user to grant access to specific scopes.
Authentication header:
"X-Hmac-Authorization: " + base64Encode(apiKey + ':' + hashHmacSha256(method + ' /' + uri , secretKey))
method
– GET, POST, PUT, DELETE;uri
– a request path, e.g.Lead/action/convert
.
Basic Authentication¶
Warning
This method is not recommended.
For regular users, the EspoCRM front-end uses the Basic Authentication. A username and password (or token) are passed through the Authorization
header encoded with Base64.
"Authorization: Basic " + base64Encode(username + ':' + password)
It's better to use an auth token instead of a password. In this case you will need to provide the username and the password/token in the Espo-Authorization
header.
"Espo-Authorization: " + base64Encode(username + ':' + passwordOrToken)
- Obtain an access token by
GET App/user
request with the username and password passed inEspo-Authorization
header. - Use this token instead of a password in
Espo-Authorization
header for all further requests. - If the request returns 401 error that means either that the username/password is wrong or the token is not valid anymore.
Authentication Token / User Specific Data¶
GET App/user
Make this request to retrieve an access token.
Returns:
token
– access token to useacl
– information about user accesspreferences
– user preferencesuser
– user record attributes
Error codes¶
400 Bad request¶
When you create or update a record, this error can mean that you didn't pass a required field or it has an empty value. Check the response message or see data/log
for more details.
403 Forbidden¶
Usually occurs when you don't have access to a specific record or action. See data/log
for more details.
404 Not found¶
Usually occurs when a requested record doesn't exist.
Date and time values¶
Date format: YYYY-MM-DD. Datetime format: YYYY-MM-DD HH:mm:ss.
All datetime values are represented in UTC timezone, regardless of settings.