GET api/MobileOtherIdentifier/GetMobileOtherIdentifier

Get Mobile Other Identifier

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of VMobileOtherIdentifier
NameDescriptionTypeAdditional information
IdentifierId

IdentifierId

integer

None.

Identifier

Identifier

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "IdentifierId": 1,
    "Identifier": "sample string 2"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

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

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="[0].IdentifierId"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="[0].Identifier"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="[1].IdentifierId"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="[1].Identifier"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e--