PUT api/qualifications/{id}
Update an existing Qualification.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The primary key of the Qualification record in the Hobsons database. |
integer |
Required |
Body Parameters
The Qualification object which is passed in via the request body.
QualificationDtoName | 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 system code for the given record. |
string |
String length: inclusive between 0 and 100 |
StudyLevelId |
The identifier of the StudyLevel associated with the given record. |
integer |
Range: inclusive between 1 and 99999999 |
Inactive | boolean |
Required |
|
StudyLevelName |
The name of the study level associated with the given record. Ignored for PUT and POST requests sent to the API. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "sample string 2", "Code": "sample string 3", "StudyLevelId": 1, "Inactive": true, "StudyLevelName": "sample string 5" }
Response Information
Resource Description
None.