POST api/v1/sms/messages/fof

Sends a FOF Message to a group of people.

Request Information

URI Parameters

None.

Body Parameters

The FOF Message along with the list of messages.

FOFMessage
NameDescriptionTypeAdditional information
Groups

List of groups to send the message.

Collection of globally unique identifier

Required

Text

The contents of the message.

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Groups": [
    "1b32f6d4-03a8-44ee-a3d5-995df22f0f68",
    "a2ce2c82-eba3-40ab-997c-37688f0ac19f"
  ],
  "Text": "sample string 1"
}

application/xml, text/xml

Sample:
<FOFMessage xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Groups>
    <guid>1b32f6d4-03a8-44ee-a3d5-995df22f0f68</guid>
    <guid>a2ce2c82-eba3-40ab-997c-37688f0ac19f</guid>
  </Groups>
  <Text>sample string 1</Text>
</FOFMessage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The response of the message.

ResponseOfSmsTransaction
NameDescriptionTypeAdditional information
Error

Error

None.

ResponseData

ResponseDataOfSmsTransaction

None.

Response Formats

application/json, text/json

Sample:
{
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorReason": "sample string 2"
  },
  "ResponseData": {
    "Identification": {
      "UserId": "sample string 1"
    },
    "Result": "sample string 1",
    "Detail": {
      "MessageID": "sample string 1",
      "NoOfContacts": "sample string 2",
      "NoOfQuickRecipients": "sample string 3",
      "NoOfSMS": "sample string 4",
      "NoOfEmails": "sample string 5",
      "PreTransaction": "sample string 6",
      "PostTransaction": "sample string 7",
      "CreditsUsed": "sample string 8",
      "MessageText": "sample string 9"
    }
  }
}

application/xml, text/xml

Sample:
<ResponseOfSmsTransaction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Error>
    <ErrorCode>sample string 1</ErrorCode>
    <ErrorReason>sample string 2</ErrorReason>
  </Error>
  <ResponseData>
    <Result>sample string 1</Result>
    <Identification>
      <UserId>sample string 1</UserId>
    </Identification>
    <Detail>
      <MessageID>sample string 1</MessageID>
      <NoOfContacts>sample string 2</NoOfContacts>
      <NoOfQuickRecipients>sample string 3</NoOfQuickRecipients>
      <NoOfSMS>sample string 4</NoOfSMS>
      <NoOfEmails>sample string 5</NoOfEmails>
      <PreTransaction>sample string 6</PreTransaction>
      <PostTransaction>sample string 7</PostTransaction>
      <CreditsUsed>sample string 8</CreditsUsed>
      <MessageText>sample string 9</MessageText>
    </Detail>
  </ResponseData>
</ResponseOfSmsTransaction>