GET api/OtherEntry/GetEntryType?userid={userid}

Documentation for 'GetEntryType'.

Request Information

Parameters

NameDescriptionAdditional information
userid
Documentation for 'userid'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "data": [
    {
      "typ": "sample string 1",
      "dbc": "sample string 2"
    },
    {
      "typ": "sample string 1",
      "dbc": "sample string 2"
    },
    {
      "typ": "sample string 1",
      "dbc": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<BindEntryType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VCLCYL.API.Models">
  <data>
    <EntryType>
      <dbc>sample string 2</dbc>
      <typ>sample string 1</typ>
    </EntryType>
    <EntryType>
      <dbc>sample string 2</dbc>
      <typ>sample string 1</typ>
    </EntryType>
    <EntryType>
      <dbc>sample string 2</dbc>
      <typ>sample string 1</typ>
    </EntryType>
  </data>
  <message>sample string 2</message>
  <success>true</success>
</BindEntryType>