Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

Use this file to discover all available pages before exploring further.

Update Business
PUT https://services.leadconnectorhq.com/businesses/{businessId}

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Path parameters

businessId
string
default:"5DP4iH6HLkQsiKESj6rh"
required

Body

name
string
default:"Microsoft"
phone
string
default:"+18832327657"
email
string
default:"john@deo.com"
postalCode
string
default:"12312312"
website
string
default:"www.xyz.com"
address
string
default:"street adress"
state
string
default:"new york"
city
string
default:"new york"
country
string
default:"us"
description
string
default:"business description"

Respuestas

success
boolean
default:"True"
required
Success Value
buiseness
object
required
Business Response
{
  "success": true
}
{}
{}
{}

Ejemplo

curl -X PUT 'https://services.leadconnectorhq.com/businesses/YOUR_businessId' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
  "name": "Microsoft",
  "phone": "+18832327657",
  "email": "john@deo.com",
  "postalCode": "12312312",
  "website": "www.xyz.com",
  "address": "street adress",
  "state": "new york",
  "city": "new york",
  "country": "us",
  "description": "business description"
}'