GET api/AccountItemv/{id}?DataType={DataType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

DataType

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AccountItemv
NameDescriptionTypeAdditional information
AccountItemvId

integer

None.

AccountvId

integer

None.

ItemId

integer

None.

ItemName

string

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountItemvId": 1,
    "AccountvId": 2,
    "ItemId": 3,
    "ItemName": "sample string 4",
    "CreatedDate": "2025-12-08T01:54:42.0332203+05:30",
    "CreatedBy": "sample string 6"
  },
  {
    "AccountItemvId": 1,
    "AccountvId": 2,
    "ItemId": 3,
    "ItemName": "sample string 4",
    "CreatedDate": "2025-12-08T01:54:42.0332203+05:30",
    "CreatedBy": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccountItemv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities.VirtualEntities">
  <AccountItemv>
    <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">sample string 6</CreatedBy>
    <CreatedDate xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">2025-12-08T01:54:42.0332203+05:30</CreatedDate>
    <AccountItemvId>1</AccountItemvId>
    <AccountvId>2</AccountvId>
    <ItemId>3</ItemId>
    <ItemName>sample string 4</ItemName>
  </AccountItemv>
  <AccountItemv>
    <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">sample string 6</CreatedBy>
    <CreatedDate xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">2025-12-08T01:54:42.0332203+05:30</CreatedDate>
    <AccountItemvId>1</AccountItemvId>
    <AccountvId>2</AccountvId>
    <ItemId>3</ItemId>
    <ItemName>sample string 4</ItemName>
  </AccountItemv>
</ArrayOfAccountItemv>