Update an interaction reference
patch
/crmRestApi/resources/11.13.18.05/interactions/{InteractionId}/child/interactionReferences/{interactions_interactionReferences_Id}
Request
Path Parameters
-
InteractionId(required): integer(int64)
The unique identifier of the interaction.
-
interactions_interactionReferences_Id(required): string
The value of this parameter could be a hash of the key that is used to uniquely identify the resource item. The client should not generate the hash key value. Instead, the client should query on the collection resource with a filter to navigate to a specific resource item. For example: products?q=InventoryItemId=
Header Parameters
-
Metadata-Context: string
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: string
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-
ObjectId: integer
(int64)
Title:
Object IDThe unique identifier of the object associated with the interaction reference. -
ObjectTypeCd: string
Title:
Object TypeMaximum Length:30The code indicating the type of the object present in the interaction reference. A list of valid values is defined in the lookup ORA_SVC_IM_REF_OBJECT_TYPE_CD.
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 : interactions-interactionReferences-item-response
Type:
Show Source
object-
CreatedBy: string
Title:
Created ByRead Only:trueMaximum Length:64The user who created the reference. -
CreationDate: string
(date-time)
Title:
Creation DateRead Only:trueThe date and time when the reference was created. -
DeleteFlag: boolean
Read Only:
trueIndicates if the interaction reference can be deleted by the current user. The default value is false. -
InteractionId: integer
(int64)
Title:
Interaction IDThe unique identifier of the interaction reference. -
InteractionNumber: string
Title:
Interaction NumberMaximum Length:30The alternate key identifier for the interaction. -
LastUpdateDate: string
(date-time)
Title:
Last Updated DateRead Only:trueThe date and time when the reference was last updated. -
LastUpdatedBy: string
Title:
Last Updated ByRead Only:trueMaximum Length:64The user who last updated the reference. -
LastUpdateLogin: string
Title:
Last Update LoginRead Only:trueMaximum Length:32The session login of the user who last updated the reference. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
ObjectId: integer
(int64)
Title:
Object IDThe unique identifier of the object associated with the interaction reference. -
ObjectNumber: string
Title:
Reference NumberRead Only:trueMaximum Length:255The alternate key identifier of the object associated with the interaction reference. -
ObjectTypeCd: string
Title:
Object TypeMaximum Length:30The code indicating the type of the object present in the interaction reference. A list of valid values is defined in the lookup ORA_SVC_IM_REF_OBJECT_TYPE_CD. -
ReferenceId: integer
(int64)
Title:
Reference IDRead Only:trueThe unique identifier used for integration with external systems. -
UpdateFlag: boolean
Read Only:
trueIndicates if the interaction reference can be updated by the current user. The default value is true if the user has access to update the interaction reference.
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.
Links
- ObjectTypeCdLOV
-
Parameters:
- finder:
LookupTypeFinder%3BLookupType%3DORA_SVC_IM_REF_OBJECT_TYPE_CD
The list of values indicating the object types.
The following properties are defined on the LOV link relation:- Source Attribute: ObjectTypeCd; Target Attribute: LookupCode
- Display Attribute: Meaning
- finder:
Examples
The following example shows how to update an interaction reference by submitting a PATCH request on the REST resource.
Request Header Example
The following shows an example of the request header.
PATCH /crmRestApi/resources/11.13.18.05/interactions/300100096307925/child/interactionReferences/300100097921285
Response Header Example
The following shows an example of the response header.
HTTP/1.1 200: OK Date: Fri, 03 Mar 2017 07:54:53 GMT Server : Oracle-HTTP-Server-11g Content-Type: application/vnd.oracle.adf.resourcecollection+json Content-Language: en
Request Body Example
The following shows an example of the request body in JSON format.
{
"ObjectTypeCd": "SVC_CHATS"
}Response Body Example
The following shows an example of the response body in JSON format.
{
"ReferenceId" : 300100097921285,
"InteractionId" : 300100096307925,
"ObjectTypeCd" : "SVC_CHATS",
"ObjectId" : 30001233322,
"CreatedBy" : "SALES_ADMIN",
"CreationDate" : "2017-03-10T00:31:09-08:00",
"LastUpdatedBy" : "SALES_ADMIN",
"LastUpdateDate" : "2017-03-10T00:39:47-08:00",
"LastUpdateLogin" : "4A49E601416B05A8E05307B3F20A1B38",
"UpdateFlag" : "true",
"DeleteFlag" : "true",
"links" : [ {
"rel" : "self",
"href" : "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/interactions/300100096307925/child/interactionReferences/300100097921285",
"name" : "interactionReferences",
"kind" : "item",
"properties" : {
"changeIndicator" : "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
}
}, {
"rel" : "canonical",
"href" : "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/interactions/300100096307925/child/interactionReferences/300100097921285",
"name" : "interactionReferences",
"kind" : "item"
}, {
"rel" : "parent",
"href" : "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/interactions/300100096307925",
"name" : "interactions",
"kind" : "item"
} ]
}