Submit all recruiting job requisitions languages
post
/hcmRestApi/resources/11.13.18.05/recruitingJobRequisitions/{recruitingJobRequisitionsUniqID}/child/languages
Request
Path Parameters
-
recruitingJobRequisitionsUniqID(required): string
This is the hash key of the attributes which make up the composite key for the Recruiting Job Requisitions resource and used to uniquely identify an instance of Recruiting Job Requisitions. The client should not generate the hash key value. Instead, the client should query on the Recruiting Job Requisitions collection resource in order to navigate to a specific instance of Recruiting Job Requisitions to get the hash key.
Header Parameters
-
Metadata-Context:
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".
-
REST-Framework-Version:
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
- application/json
Root Schema : schema
Type:
Show Source
object-
IsDefaultFlag: boolean
Maximum Length:
1Is Default indicator in recruiting job requisitions languages. -
LanguageCode: string
Maximum Length:
4Language Code in recruiting job requisitions languages. -
LanguageId: integer
(int64)
Language ID in recruiting job requisitions languages.
Response
Supported Media Types
- application/json
Default Response
The following table describes the default response for this task.
Headers
-
Metadata-Context:
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".
-
REST-Framework-Version:
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.
Root Schema : recruitingJobRequisitions-languages-item-response
Type:
Show Source
object-
CreatedBy: string
Title:
Created ByRead Only:trueMaximum Length:64Language used for creating the requisition. -
CreationDate: string
(date-time)
Title:
Creation DateRead Only:trueCreation Date in recruiting job requisitions languages. -
IsDefaultFlag: boolean
Maximum Length:
1Is Default indicator in recruiting job requisitions languages. -
LanguageCode: string
Maximum Length:
4Language Code in recruiting job requisitions languages. -
LanguageId: integer
(int64)
Language ID in recruiting job requisitions languages.
-
LastUpdateDate: string
(date-time)
Title:
Last Updated DateRead Only:trueLast Update Date in recruiting job requisitions languages. -
LastUpdatedBy: string
Title:
Last Updated ByRead Only:trueMaximum Length:64Last Update using in recruiting job requisitions languages. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : link
Type:
Show Source
object-
href: string
Title:
hyperlink referenceThe URI to the related resource. -
kind: string
Title:
kindAllowed Values:[ "collection", "item", "describe", "other" ]The kind of the related resource. -
name: string
Title:
nameThe name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relationAllowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]The name of the relation to the resource instance. Example: self.
Nested Schema : properties
Type:
Show Source
object-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
The following example shows how to create a language for a job requisition by submitting a POST request on the REST resource using cURL.
curl -i -u "<username>:<password>" -X POST -d <payload> http://host:port/hcmCoreApi/resources/11.13.18.05/recruitingJobRequisitions/PR_REQ_501/child/languages
Example of Payload
The following is an example of the payload.
{
"LanguageCode": "KO3",
"IsDefaultFlag": false
}Example of Response Header
The following is an example of the response header.
HTTP/1.1 200 OK Content-Type : application/octet-stream
Example of Response Body
The following example shows the contents of the response body in JSON format.
{
"LanguageId": 300100172451542,
"LanguageCode": "KO3",
"IsDefaultFlag": false,
"CreatedBy": "ZFRCE001_Marian_ZBEN",
"CreationDate": "2019-01-18T22:19:02+00:00",
"LastUpdatedBy": "ZFRCE001_Marian_ZBEN",
"LastUpdateDate": "2019-01-18T22:19:02.012+00:00",
"links": [3]
{...
...}
}