Create a check-in document

post

/hcmRestApi/resources/11.13.18.05/checkInDocuments

Request

Header Parameters
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
  • Contains one of the following values: true or false. If true, the server performs an Upsert operation instead of a Create operation. During an Upsert operation, the server attempts to find an existing resource that matches the payload. If a match is found, the server updates the existing resource instead of creating a new one. If not found or false (default), the server performs a Create operation. Note that the Upsert operation isn't supported for date-effective REST resources.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Questionnaire Responses
Type: array
Title: Questionnaire Responses
The questionnaireResponses resource provides the responses by a participant for the questions in a specific version of a questionnaire.
Show Source
Nested Schema : checkInDocuments-questionnaireResponses-item-post-request
Type: object
Show Source
Nested Schema : Question Responses
Type: array
Title: Question Responses
The questionResponses resource provides the responses provided by the participant to a specific question in a questionnaire.
Show Source
Nested Schema : checkInDocuments-questionnaireResponses-questionResponses-item-post-request
Type: object
Show Source
Nested Schema : Attachments
Type: array
Title: Attachments
The attachments resource is used to view, create, and update attachments.
Show Source
Nested Schema : schema
Type: object
Show Source
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
  • The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Body ()
Root Schema : checkInDocuments-item-response
Type: object
Show Source
Nested Schema : Questionnaire Responses
Type: array
Title: Questionnaire Responses
The questionnaireResponses resource provides the responses by a participant for the questions in a specific version of a questionnaire.
Show Source
Nested Schema : checkInDocuments-questionnaireResponses-item-response
Type: object
Show Source
Nested Schema : Question Responses
Type: array
Title: Question Responses
The questionResponses resource provides the responses provided by the participant to a specific question in a questionnaire.
Show Source
Nested Schema : checkInDocuments-questionnaireResponses-questionResponses-item-response
Type: object
Show Source
Nested Schema : Attachments
Type: array
Title: Attachments
The attachments resource is used to view, create, and update attachments.
Show Source
Nested Schema : checkInDocuments-questionnaireResponses-questionResponses-responseAttachments-item-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to create a check-in document by submitting a POST request on the REST resource using CURL.

curl -i -u "<user>:<password>" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json"  -X POST -d <payload> http://<host>:<port>/hcmRestApi/resources/11.13.18.05/checkInDocuments

Example of Payload

The following is an example of the payload.

{
            "CheckInTemplateName": "Check-In Meetings",
            "ReviewPeriodName": "Default Review Period - Vision Corporation Enterprise",
            "ManagerPersonNumber": "8153799",
            "PersonNumber": "8153756",
            "AssignmentNumber": "EEEE8153756",
            "DocumentName": "Performance Discussion",
            "CheckInDate": "2018-09-28"
}

Example of Response Header

The following shows an example of the response header.

Status: HTTP/1.1 201 Created
Created Content-Type : application/json

Example of Response Body

The following example shows the contents of the response body in JSON format.

{
    "CheckInDocumentId": 300100183085372,
    "CheckInTemplateId": 300100167943392,
    "CheckInTemplateName": null,
    "ReviewPeriodId": 100100037213209,
    "ReviewPeriodName": null,
    "ManagerPersonId": 100000008153799,
    "ManagerPersonNumber": null,
    "PersonId": 100000008153756,
    "PersonNumber": null,
    "AssignmentId": 100000008154060,
    "AssignmentNumber": null,
    "DocumentName": "Performance Discussion",
    "CheckInDate": "2018-09-28",
    "links": [...]
}
Back to Top