v1

OpenAPI 3.0.02026-08-04109109370.6 KB
Products

Get lead product

A product map is an instance of a product attached to a lead, including quantity and custom pricing information. This endpoint returns a single mapping between a particular product and lead.

get/productmaps/{id}

Path parameters

idstring required

ProductMap ID

Response

OK

Example response

{
  "meta": {
    "instanceId": "12345"
  },
  "productMaps": [
    {
      "id": "3-contacts",
      "price": {
        "formatted": "$100.00",
        "amount": "100.00",
        "currency": "USD"
      },
      "productType": "product",
      "links": {
        "product": "1-products"
      }
    }
  ]
}