GET api/message/GetMessageTagListForMessage?msgId={msgId}&mobile={mobile}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
msgId

integer

Required

mobile

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MessageTag
NameDescriptionTypeAdditional information
TagID

integer

None.

TagName

string

None.

TagColor

string

None.

CreatedDateTime

date

None.

ModifiedDateTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TagID": 1,
    "TagName": "sample string 2",
    "TagColor": "sample string 3",
    "CreatedDateTime": "2025-12-11T05:48:24.612296-08:00",
    "ModifiedDateTime": "2025-12-11T05:48:24.612296-08:00"
  },
  {
    "TagID": 1,
    "TagName": "sample string 2",
    "TagColor": "sample string 3",
    "CreatedDateTime": "2025-12-11T05:48:24.612296-08:00",
    "ModifiedDateTime": "2025-12-11T05:48:24.612296-08:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMessageTag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMSNotificationAPI.Entity">
  <MessageTag>
    <CreatedDateTime>2025-12-11T05:48:24.612296-08:00</CreatedDateTime>
    <ModifiedDateTime>2025-12-11T05:48:24.612296-08:00</ModifiedDateTime>
    <TagColor>sample string 3</TagColor>
    <TagID>1</TagID>
    <TagName>sample string 2</TagName>
  </MessageTag>
  <MessageTag>
    <CreatedDateTime>2025-12-11T05:48:24.612296-08:00</CreatedDateTime>
    <ModifiedDateTime>2025-12-11T05:48:24.612296-08:00</ModifiedDateTime>
    <TagColor>sample string 3</TagColor>
    <TagID>1</TagID>
    <TagName>sample string 2</TagName>
  </MessageTag>
</ArrayOfMessageTag>