GET api/contractform/{id}

Returns the specified Contract Form

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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
}

application/xml, text/xml

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