POST api/LeadTag/ProcessRemoveLeadTagByCSV

Request Information

URI Parameters

None.

Body Parameters

LeadTagRemoveCSVDTO
NameDescriptionTypeAdditional information
FileName

string

None.

FileBytes

Collection of byte

None.

LeadTagIds

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "FileName": "sample string 1",
  "FileBytes": "QEA=",
  "LeadTagIds": [
    1,
    2
  ]
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoveLeadTagsResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

LeadIdsNotExist

Collection of string

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "LeadIdsNotExist": [
    "sample string 1",
    "sample string 2"
  ],
  "ResponseMessage": "sample string 2"
}