API

Human resource APIs

POST human-resources/courses/{courseId}/diplomas

Creates a new item in course deplomas

HTTP method POST
URI https://api.rambase.net/human-resources/courses/{courseId}/diplomas
Supported formats Xml, Html, Json (ex. $format=json)
- URI parameter {courseId} Course identifier
Integer, minimum 100000
Successful HTTP status code 201
API resource identifier 2990, version 6

The following body must be added to the request. Mouse over fieldnames for description and other useful information about the fields. Note that fields in bold are required/mandatory.

Format:
1
<CourseDiploma>
2
     <StartDate
StartDate

Date the course started

This field is optional.

>
{Date}</StartDate>
3
     <EndDate
EndDate

Date the course ended

This field is optional.

>
{Date}</EndDate>
4
     <Employee
Employee

Required/mandatory field

The employee who received the course diploma

>
5
          <EmployeeId
EmployeeId

Required/mandatory field

Employee identifier

Minimum value: 100

>
{Integer}</EmployeeId>
6
     </Employee>
7
</CourseDiploma>
1
{
2
     "courseDiploma": {
3
          "startDate
StartDate

Date the course started

This field is optional.

":
"{Date}",
4
          "endDate
EndDate

Date the course ended

This field is optional.

":
"{Date}",
5
          "employee
Employee

Required/mandatory field

The employee who received the course diploma

":
{
6
               "employeeId
EmployeeId

Required/mandatory field

Employee identifier

Minimum value: 100

":
"{Integer}"
7
          }
8
     }
9
}

The query string is placed after the resource URL, seperated with a questionmark (?). The query string is composed of a series of query parameters with values. See the page about query parameters on how to use these parameters.

$access_token String, optional After successful login you get an access token which needs to be provided in all API requests. Even though it is possible to pass this token as query parameter, we recommended passing it using the HTTP request header as described in Authorization. Note that all access tokens have an expiration time.
$db String, optional Set the database/company for the request
$useMinimumVersion Integer, optional Used to run a new version of an API resource when your API client is running a deprecated API resource. See the Breaking changes page for more information.
$lang String, optional Specifies the language used in the response, following the 3-letter ISO-639-1 [lll]

Read more about filters and sorting on how to use filter parameters and named filters.

Read more about filters and sorting on how to use sortable parameters

Requesting this resource will yield the following response. Mouse over fieldnames (or fieldgroups) for descriptions and other useful information about the fields.

Please note that some fields may be removed from the response, based on user roles/duties/permissions.

Format:
1
<CourseDiploma>
2
     <CourseDiplomaId
CourseDiplomaId

Course diplomas identifier

>
{Integer}</CourseDiplomaId>
3
     <CreatedAt
CreatedAt

Date and time this diploma was created

>
{Date}</CreatedAt>
4
     <StartDate
StartDate

Date the course started

>
{Date}</StartDate>
5
     <EndDate
EndDate

Date the course ended

>
{Date}</EndDate>
6
     <NumberOfAttachments
NumberOfAttachments

The number of attachments this object has.

>
{Integer}</NumberOfAttachments>
7
     <Employee
Employee

The employee who received the course diploma

>
8
          <EmployeeId
EmployeeId

Employee identifier

>
{Integer}</EmployeeId>
9
          <EmployeeLink
EmployeeLink

Employee reference

>
{String}</EmployeeLink>
10
     </Employee>
11
     <Course>
12
          <CourseId
CourseId

Course identifier

>
{Integer}</CourseId>
13
          <Name
Name

Name of course

>
{String}</Name>
14
          <CourseProvider
CourseProvider

Name of the provider of the course

>
{String}</CourseProvider>
15
          <CourseLink
CourseLink

Course reference

>
{String}</CourseLink>
16
     </Course>
17
     <CourseDiplomaLink
CourseDiplomaLink

Course diploma item link

>
{String}</CourseDiplomaLink>
18
</CourseDiploma>
1
{
2
     "courseDiploma": {
3
          "courseDiplomaId
CourseDiplomaId

Course diplomas identifier

":
"{Integer}",
4
          "createdAt
CreatedAt

Date and time this diploma was created

":
"{Date}",
5
          "startDate
StartDate

Date the course started

":
"{Date}",
6
          "endDate
EndDate

Date the course ended

":
"{Date}",
7
          "numberOfAttachments
NumberOfAttachments

The number of attachments this object has.

":
"{Integer}",
8
          "employee
Employee

The employee who received the course diploma

":
{
9
               "employeeId
EmployeeId

Employee identifier

":
"{Integer}",
10
               "employeeLink
EmployeeLink

Employee reference

":
"{String}"
11
          },
12
          "course": {
13
               "courseId
CourseId

Course identifier

":
"{Integer}",
14
               "name
Name

Name of course

":
"{String}",
15
               "courseProvider
CourseProvider

Name of the provider of the course

":
"{String}",
16
               "courseLink
CourseLink

Course reference

":
"{String}"
17
          },
18
          "courseDiplomaLink
CourseDiplomaLink

Course diploma item link

":
"{String}"
19
     }
20
}

List of available operations/actions for this resource.
See the operations documentation for more information about API operations.

Possible error codes the response might return:

Error 101013 HTTP 404 Sub-module not found
Error 102018 HTTP 403 You need permission {0}. Duties with this permission: {1}
Error 103558 HTTP 400 End date can not be less than start date
Error 103785 HTTP 400 User is not authorized to add, delete or update courses for this employee