GET api/GetDepths?accountNumber={accountNumber}&password={password}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountNumber | integer |
Required |
|
| password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Depth| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Code": "sample string 1",
"Description": "sample string 2"
},
{
"Code": "sample string 1",
"Description": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfDepth xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Depth>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Depth>
<Depth>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Depth>
</ArrayOfDepth>