Introduction

API for salesly.app

The Salesly API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

URL base
https://rest.salesly.app/api/developers/v2/

Description

Manage your principal Salesly modules Enterprises Contacts Products Orders Opportunities.

The API key is achieved within the Salesly.app . You can find it inside Salesly.app "Configuration > Public API Configuration".

All request tests will take effect in your Salesly.app account. So take care. We are working on a development mode...

Authentication

All request need a couple of Headers:

Headers
{
  "x-api-key": "SALESLY_API_KEY",
  "Accept": "application/json"
}

Genereate your SALESLY_API_KEY on "Configuration > Public API Configuration (opens in a new tab)" .

Test in Postman

Fork our collection for testing endpoints and see the structure more clear:

Run in Postman (opens in a new tab)

You only need to set the x-api-key in the headers section of "ENDPOINTS" folder.

Run in Postman