QMgetFields_WFieldLabel API

Get the field set with fields and labels for the quote members.

This API is used with the QuoteMemberGetFields Vlocity Integration Procedure (VIP) to get the quote member's fields and labels based on the FieldSetType parameter, which can have a value of Location or Subscriber.

URI

/services/apexrest/vlocity_cmt/v1/integrationprocedure/QMgetFields_WFieldLabel/

HTTP Method

POST

Request Body

{
  "FieldSetType": "Subscriber"
}

Response

{
  "QMFSFields": [{
    "label": "Title",
    "name": "Title__c"
  },
  {
    "label": "First Name",
    "name": "FirstName__c"
  },
  {
    "label": "Last Name",
    "name": "LastName__c"
  },
  {
    "label": "MSISDN",
    "name": "MSISDN__c"
  },
  {
    "label": "Email",
    "name": "Email__c"
  }]
}