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
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"
website
string
default:"www.xyz.com"
address
string
default:"street adress"
description
string
default:"business description"
Respuestas
200 - Successful response
success
boolean
default:"True"
required
Success Value
422 - Unprocessable Entity
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"
}'