Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...


Tip

Available from CRM.COM R9.0.0

Deprecated from CRM.COM R18.0.0


Excerpt

This method returns the physical goods that are allowed to be used by leads of specific type. Multiple physical goods are returned by each call

Resource URL

Parameters

Name

Type

Description

token

String

The token retrieved from the login method

lead_type_identifier

(mandatory)

Lead Type Identifier

The identifier of the type of the lead that will be using the physical goods. The physical goods are filtered against the allowed physical goods of the specified type. The allowed lead request type identifier fields are the following:

Include Page
v4:lead_type_identifier
v4:lead_type_identifier

fields_set

(optional)

List of Strings, comma separated 

A list of fields that should be included in the results. If not specified then all the available fields will be returned

Response Data

Include Page
V4:lead_type_physical_goods_complete
V4:lead_type_physical_goods_complete

...

Expand
titleExample 1

HTTP Method: GET 


Request:

Response:


Code Block
 code
language
javascript
themeConfluencelanguagejavascript
linenumberstrue
 {
       "product_type": null,
       "id": "0C148ADC310741A99923BE8546B48F1E",
       "product":
       {
           "id": "3F01BB0B40264DF7311660F63CB2180D",
           "description": "Remote Control",
           "code": "Remote Control",
           "alternative_code": "REM"
       }
   },
   {
       "product_type": null,
       "id": "F7E71C7E3D674358945BE113D96A66A2",
       "product":
       {
           "id": "70FFDF2B2A74466DD7D0D5246ED1DD2D",
           "description": "Antenna v1",
           "code": "Antenna 1",
           "alternative_code": "ANT1"
       }
   },
   {
       "product_type":
       {
           "service_type": null,
           "physical_good_type": "NONTRACEABLE",
           "used_for_provisioning": false,
           "classification": "PHYSICALGOODS",
           "composition_method": "FLAT",
           "id": "1FFC6C62DABA4C7BAA3536C24104E58A",
           "name": "Software Product",
           "description": null,
           "alternative_code": "SP_1"
       },
       "id": "F5A880AA92D34326B4DC9E1D1677939A",
       "product": null
   }


...