POST api/Changes/ReceiveChanges/{queueID}/{messageID}

Handles a received message for a specific queue and message ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
queueID

The ID of the queue to messages is for.

globally unique identifier

Required

messageID

The ID of the message being received.

globally unique identifier

Required

Body Parameters

The actual message being received.

DataHubMessage
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Entity

DataHubMessageEntity

None.

Content

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "c82b459c-8431-4cb0-8ce2-c50d234d5c21",
  "Entity": {
    "Name": "sample string 1",
    "Version": "sample string 2"
  },
  "Content": "sample string 2"
}

application/xml, text/xml

Sample:
<DataHubMessage xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>c82b459c-8431-4cb0-8ce2-c50d234d5c21</Id>
  <Entity>
    <Name>sample string 1</Name>
    <Version>sample string 2</Version>
  </Entity>
  <Content>sample string 2</Content>
</DataHubMessage>

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.