POST crm/transfer_asset

Tranfer asset under product family 'HART' from one contact to another.

Request Information

Parameters

NameDescription
json
  • crm_contact_id_first [ Mandatory , string ]
    The one contact id is used to tranfer asset
  • crm_contact_id_second [ Mandatory , string ]
    The another contact id is used to tranfer asset
  • crm_asset_frame_number [ Mandatory , string ]
    Asset name

Request body formats

application/json, text/json, text/plain, application/x-www-form-urlencoded

Sample:

{
  "transfer_request": [{
      "crm_contact_id_first": "0039000002E4Uwz",
      "crm_contact_id_second": "0039000002EXeeq",
      "crm_asset_frame_number": "TransferTest"
    }]
}

Response Information

Response body formats

application/json, text/json

Sample:
Success:
{
  "delivery": "true",
  "receipt": "Transfer asset successfully.",
  "items_failed": "0",
  "audit_id": "1001"
}
Failure:
{
  "delivery": "false",
  "receipt": "Transfer asset failed.",
  "items_failed": "1",
  "audit_id": "1002"
}