GET api/contractform

Returns all Contract Forms

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ContractForm
NameDescriptionTypeAdditional information
ContractFormId

Sedona internal autonumber for Contract Form

integer

None.

ContractFormCode

Abbreviated Contract Form

string

String length: inclusive between 0 and 25

Description

Full description of Contract Form

string

String length: inclusive between 0 and 50

Inactive

Set to true for Inactive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ContractFormId": 1,
    "ContractFormCode": "sample string 2",
    "Description": "sample string 3",
    "Inactive": true
  },
  {
    "ContractFormId": 1,
    "ContractFormCode": "sample string 2",
    "Description": "sample string 3",
    "Inactive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfContractForm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models">
  <ContractForm>
    <ContractFormCode>sample string 2</ContractFormCode>
    <ContractFormId>1</ContractFormId>
    <Description>sample string 3</Description>
    <Inactive>true</Inactive>
  </ContractForm>
  <ContractForm>
    <ContractFormCode>sample string 2</ContractFormCode>
    <ContractFormId>1</ContractFormId>
    <Description>sample string 3</Description>
    <Inactive>true</Inactive>
  </ContractForm>
</ArrayOfContractForm>