POST api/faculties

Insert a new Faculty.

Request Information

URI Parameters

None.

Body Parameters

FacultyDto
NameDescriptionTypeAdditional information
Id

The primary key of the record in the Hobsons database.

integer

None.

Name

string

Required

String length: inclusive between 0 and 400

Code

The client system code for the given record.

string

String length: inclusive between 0 and 100

Position

Can be used for ordering a collection of records if configured.

integer

Range: inclusive between 1 and 99999999

Inactive

boolean

Required

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 2",
  "Code": "sample string 3",
  "Position": 1,
  "Inactive": true
}

Response Information

Resource Description

The primary key (id) of the Faculty record inserted in the Hobsons database.

integer

Response Formats

application/json, text/json

Sample:
1