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 a specific product collection with Id :collectionId
PUT https://services.leadconnectorhq.com/products/collections/{collectionId}

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

collectionId
string
default:"65d71377c326ea78e1c47df5"
required
MongoId of the collection

Body

altId
string
default:"6578278e879ad2646715ba9c"
required
Account Id
altType
string
default:"LOCATION"
required
The type of alt. For now it is only LOCATION Posibles valores: ‘account’
name
string
default:"Best Sellers"
Name of the Product Collection
slug
string
default:"best-sellers"
Slug of the Product Collection which helps in navigation
image
string
default:"http://example.com/watermark.png"
The URL of the image that is going to be displayed as the collection Thumbnail
seo
object
The metadata information which will be displayed in SEO previews

Respuestas

status
boolean
default:"True"
required
Status of api action
message
string
default:"Successfully created"
Success message
{
  "status": true,
  "message": "Successfully created"
}
{}
{}
{}

Ejemplo

curl -X PUT 'https://services.leadconnectorhq.com/products/collections/YOUR_collectionId' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
  "altId": "6578278e879ad2646715ba9c",
  "altType": "LOCATION",
  "name": "Best Sellers",
  "slug": "best-sellers",
  "image": "http://example.com/watermark.png"
}'