Update a wrap up

patch

/crmRestApi/resources/11.13.18.05/wrapUps/{SummaryId}

Request

Path Parameters
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 : 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 : wrapUps-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 : wrapUps-Attachments-item-response
Type: object
Show Source
Back to Top

Examples

Use PATCH with the following URI syntax to update a specific wrap up:

Example of Request URI

The following shows an example of the request header.

https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/wrapUps/300100095286192

Example of Request Header

The following shows an example of the request header.

PATCH /crmRestApi/resources/11.13.18.05/wrapUps/300100095286192  HTTP/1.1
HOST: servername.fa.us2.oraclecloud.com
authorization: Basic U0FMRVNfQURNSU46V2VsY29tZTE=
content-type: application/vnd.oracle.adf.resourceitem+json

Example of Request Body

The following shows an example of the request body in JSON format.

{
"CommReasonCd": "GENERAL_QUESTION",
"InteractionId": 300100091808024,
"InteractionNotes": "I like REST",
"ResolutionCd": "ANSWERED_QUESTION"
}

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200: OK
Date: Mon, 16 Jan 2017 13:36:04 GMT
Server: Oracle-HTTP-Server-11g
Content-Type: application/vnd.oracle.adf.resourceitem+json
Content-Language: en

Example of Response Body

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

Content type:
{
{
"SummaryId": 300100095286192,
"InteractionId": 300100091808024,
"CommReasonCd": "GENERAL_QUESTION",
"ResolutionCd": "ANSWERED_QUESTION",
"TransferReason": null,
"InteractionNotes": "I like REST",
"InteractionDescription": null,
"InteractionFKId": 300100091808024,
"InteractionObjectVersionNumber": 4,
"InteractionStatusCd": "ORA_SVC_CLOSED",
"links": [
  {
"rel": "self",
"href": "http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/wrapUps/300100095286192",
"name": "wrapUps",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000002737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787200106A6176612E6C616E672E4F626A656374000000000000000000000078700000000278"
}
},
  {
"rel": "canonical",
"href": "http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/wrapUps/300100095286192",
"name": "wrapUps",
"kind": "item"
},
  {
"rel": "lov",
"href": "http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/wrapUps/300100095286192/lov/ResolutionCdLov",
"name": "ResolutionCdLov",
"kind": "collection"
},
  {
"rel": "lov",
"href": "http://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/wrapUps/300100095286192/lov/CommReasonLov",
"name": "CommReasonLov",
"kind": "collection"
}
],
}
}
Back to Top