POST api/campuses
Insert a new Campus.
Request Information
URI Parameters
None.
Body Parameters
CampusDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The primary key of the record in the Hobsons database. |
integer |
None. |
| Name | string |
Required String length: inclusive between 0 and 100 |
|
| Code |
The client's system code for this record. |
string |
Required String length: inclusive between 0 and 30 |
| Position |
The position number among the collection of records. |
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 Campus record inserted in the Hobsons database.
integerResponse Formats
application/json, text/json
Sample:
1