SalesByte
Integration API

Integration API

The Integration API provides write access to create quotes and leads at the profile level. Authentication is done via a UUID included in the request body.

Key Characteristics

AspectDetails
AuthenticationUUID in request body
ScopeProfile-level
OperationsWrite (POST)
Base URL/integrations/*

For read operations (retrieving quotes), see the Quotes API which uses Bearer token authentication at the company level.

Available Endpoints

Endpoints Overview

MethodEndpointDescription
POST/integrations/create_brandawarenessCreate a new lead
POST/integrations/create_quoteCreate a standard quote
POST/integrations/create_quote/templateCreate a quote from template

Authentication

All Integration API requests require a uuid parameter in the request body:

{
  "uuid": "your-integration-uuid",
  // ... other parameters
}

The UUID is unique to each integration configuration and acts as the authentication key for the request. It is obtained from your integration settings in SalesByte.

Keep your integration UUID secure. Anyone with access to the UUID can create quotes on the associated profile.

Common Parameters

All endpoints share these common parameters:

ParameterTypeDescription
uuidstringRequired. Unique identifier for the integration configuration
quote_profile_idintegerRequired. The quote profile to use
customer_namestringRequired. The name of the customer
customer_emailstring | nullCustomer's email address
customer_phonestring | nullCustomer's phone number

Response Format

Successful creation responses return:

{
  "id": 123,
  "links": {
    "edit": "https://app.salesbyte.se/offerter/123/redigera",
    "customer_view": "https://app.salesbyte.se/view/abc123",
    "customer_verificate": "https://app.salesbyte.se/signed/abc123",
    "customer_project_approval": "https://app.salesbyte.se/view/abc123?project_approval=1"
  }
}
FieldDescription
idInternal identifier of the created quote
links.editURL to edit the quote in SalesByte
links.customer_viewURL for the customer to view the quote
links.customer_verificateURL for customer verification
links.customer_project_approvalURL for customer project approval

On this page