Update a check-in document

patch

/hcmRestApi/resources/11.13.18.05/checkInDocuments/{checkInDocumentsUniqID}

Request

Path Parameters
  • This is the hash key of the attributes which make up the composite key for the Check-In Documents resource and used to uniquely identify an instance of Check-In Documents. The client should not generate the hash key value. Instead, the client should query on the Check-In Documents collection resource in order to navigate to a specific instance of Check-In Documents to get the hash key.
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.
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-patch-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-patch-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 : checkInDocuments-questionnaireResponses-questionResponses-responseAttachments-item-patch-request
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 update a check-in document by submitting a PATCH request on the REST resource using cURL.

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

Example of Payload

The following is an example of the payload.

"{
  ""DocumentName"": ""Performance Discussion for quarter 1""
}"

Example of Response Header

The following is an example of the response header.

Status: HTTP/1.1 200 OK
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": "Check-In Meetings",
    "ReviewPeriodId": 100100037213209,
    "ReviewPeriodName": "Default Review Period - Vision Corporation Enterprise",
    "ManagerPersonId": 100000008153799,
    "ManagerPersonNumber": "8153799",
    "PersonId": 100000008153756,
    "PersonNumber": "8153756",
    "AssignmentId": 100000008154060,
    "AssignmentNumber": "EEEE8153756",
    "DocumentName": "Performance Discussion for quarter 1",
    "CheckInDate": "2018-09-28",
    "links": [...]
}
Back to Top