GET api/v2/referencetables/currentinusecodes
Returns list of Current In Use Codes
| Name | Description | Type |
|---|---|---|
| ciuCode |
Current in use code of structure |
string |
| ciuCodeLong |
Long version of the Current In Use Code |
string |
Response Formats
application/json, text/json
Sample:
[
{
"ciuCode": "sample string 1",
"ciuCodeLong": "sample string 2"
},
{
"ciuCode": "sample string 1",
"ciuCodeLong": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfCurrentInUseCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<CurrentInUseCode>
<ciuCode>sample string 1</ciuCode>
<ciuCodeLong>sample string 2</ciuCodeLong>
</CurrentInUseCode>
<CurrentInUseCode>
<ciuCode>sample string 1</ciuCode>
<ciuCodeLong>sample string 2</ciuCodeLong>
</CurrentInUseCode>
</ArrayOfCurrentInUseCode>