POST api/LeadTag/AddLeadTagDeatilAndImportLog

Request Information

URI Parameters

None.

Body Parameters

UploadLeadTagDTO
NameDescriptionTypeAdditional information
TagId

integer

None.

LeadIds

Collection of integer

None.

Filename

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TagId": 1,
  "LeadIds": [
    1,
    2
  ],
  "Filename": "sample string 2"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AddLeadTagsResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

LeadIdsNotExist

Collection of integer

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

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