POST UserInfo

Request Information

URI Parameters

None.

Body Parameters

Collection of string

Request Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/xml, text/xml

Sample:
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfString>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'String[]'.

Response Information

Resource Description

Collection of MessageUser
NameDescriptionTypeAdditional information
Name

string

None.

Purpk

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Purpk": "86b0431e-edb8-4d76-8e79-b1539f7d6b96"
  },
  {
    "Name": "sample string 1",
    "Purpk": "86b0431e-edb8-4d76-8e79-b1539f7d6b96"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMessageUser xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <MessageUser>
    <Name>sample string 1</Name>
    <Purpk>86b0431e-edb8-4d76-8e79-b1539f7d6b96</Purpk>
  </MessageUser>
  <MessageUser>
    <Name>sample string 1</Name>
    <Purpk>86b0431e-edb8-4d76-8e79-b1539f7d6b96</Purpk>
  </MessageUser>
</ArrayOfMessageUser>