POST api/IndividualEquipments/CRUD

Add/Update/Delete IndividualEquipments

Request Information

URI Parameters

None.

Body Parameters

String Array of IndividualEquipments Names And Information(Mandatory)

Collection of IndividualEquipmentsInfo
NameDescriptionTypeAdditional information
IndividualEquipmentId

integer

None.

ittfid

integer

None.

IndividualEquipmentTypeId

integer

None.

EquipmentId

integer

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

Deleted

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "IndividualEquipmentId": 1,
    "ittfid": 2,
    "IndividualEquipmentTypeId": 3,
    "EquipmentId": 4,
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  },
  {
    "IndividualEquipmentId": 1,
    "ittfid": 2,
    "IndividualEquipmentTypeId": 3,
    "EquipmentId": 4,
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfIndividualEquipmentsInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <IndividualEquipmentsInfo>
    <Deleted>1</Deleted>
    <EquipmentId>4</EquipmentId>
    <IndividualEquipmentId>1</IndividualEquipmentId>
    <IndividualEquipmentTypeId>3</IndividualEquipmentTypeId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ittfid>2</ittfid>
  </IndividualEquipmentsInfo>
  <IndividualEquipmentsInfo>
    <Deleted>1</Deleted>
    <EquipmentId>4</EquipmentId>
    <IndividualEquipmentId>1</IndividualEquipmentId>
    <IndividualEquipmentTypeId>3</IndividualEquipmentTypeId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ittfid>2</ittfid>
  </IndividualEquipmentsInfo>
</ArrayOfIndividualEquipmentsInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>