Integrate into our CRM platform with API
Swedish tutorial video
How to activate the Upsales API
This article covers:
Who is the API for?
At Upsales, we have an open Application Programming Interface or API in short. Customers with fewer than 100,000 requests/day can access the API for free.
For building an advanced integration or downloading data through our API, there can be a fee.
How to get access
The API key is accessible when you access our CRM platform and sign an API order.
Need support? Our service team can help build the integration of your choosing. You can:
- buy the service from us
- do it yourself
- use a third-party developer
What can be accessed
You can use the Upsales API to access all our API endpoints, such as the CRM API to look up sales data, or our limited Marketing Automation API to create leads into Upsales.
Making requests
The API is organised around REST. All requests should be made over SSL. All request and response bodies, including errors, are encoded in JSON.
- Authenticate your account by including your secret key in API requests. You can manage your API keys under settings in Upsales as admin users. Your API keys carry many privileges, so be sure to keep them securely, away from publicly accessible areas such as GitHub, client-side code.
- Always include content-type: application/JSON as a header.
- Our API returns standard HTTP success or error status codes. For errors, we will also include extra information about what went wrong encoded in the response as JSON.
HTTP code |
Description |
200 - OK |
Everything worked as expected |
400 - Bad Request |
The request was unacceptable, often due to missing a required parameter. |
401 - Unauthorized |
No valid API key is provided. |
404 - Not Found |
The requested resource doesn't exist, or you don't have access to the resource. |