POST api/crmconnect/group/getflags

Get the marketing flags for a group in a format that can be submitted when creating a group in rezi Processes this crm connect API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

A value usable to identify the item in the crm, this key is generated by the selected domain service

Object

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{}

Response Information

Resource Description

The response returned after the operation completes.

Collection of SetFlagDataContract
NameDescriptionTypeAdditional information
InterestFlag

The interest flag value.

EnumDataContract

None.

Enabled

Indicates whether enabled is true.

boolean

None.

NegotiatorId

The unique identifier of the related negotiator resource.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InterestFlag": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "Enabled": true,
    "NegotiatorId": 2
  },
  {
    "InterestFlag": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "Enabled": true,
    "NegotiatorId": 2
  }
]