Create an action attribute

post

/crmRestApi/resources/11.13.18.05/actions/{ActionNumber}/child/actionAttribute

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.
  • 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
  • Title: Action ID
    The unique identifier of the action.
  • Title: Action Number
    Maximum Length: 64
    The alternate unique identifier of the action.
  • Title: Attribute Name
    Maximum Length: 2000
    The name of the action attribute.
  • Title: Attribute Value
    Maximum Length: 1000
    The value to be set for the action attribute.
  • Title: Context
    Maximum Length: 30
    Default Value: ORA_SVC_USER_DEFINED
    The code indicating the context within which the attribute value is interpreted. A list of valid values is defined in the lookup ORA_SVC_AP_CONTEXT_CD.
  • Title: Context Value
    Maximum Length: 255
    The display value corresponding to the context lookup code for the action attribute.
  • Title: Child Attribute Indicator
    Maximum Length: 1
    Default Value: false
    Indicates whether this attribute belongs to the parent or one of its child objects.
  • Title: Deleted
    Maximum Length: 1
    Default Value: false
    Indicates whether the attribute action is deleted. The default value is false.
  • Title: Usage
    Maximum Length: 30
    Default Value: ORA_SVC_CREATE
    The code indicating when the attribute is to be used. A list of valid values is defined in the lookup ORA_SVC_AP_ATTRIBUTE_USAGE_CD.
  • Title: Usage Value
    Maximum Length: 255
    The display value corresponding to the usage lookup code for the action attribute.
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 : actions-actionAttribute-item-response
Type: object
Show Source
  • Title: Action Attribute ID
    Read Only: true
    The unique identifier of the action attribute.
  • Title: Action ID
    The unique identifier of the action.
  • Title: Action Number
    Maximum Length: 64
    The alternate unique identifier of the action.
  • Title: Attribute Name
    Maximum Length: 2000
    The name of the action attribute.
  • Title: Attribute Value
    Maximum Length: 1000
    The value to be set for the action attribute.
  • Title: Context
    Maximum Length: 30
    Default Value: ORA_SVC_USER_DEFINED
    The code indicating the context within which the attribute value is interpreted. A list of valid values is defined in the lookup ORA_SVC_AP_CONTEXT_CD.
  • Title: Context Value
    Maximum Length: 255
    The display value corresponding to the context lookup code for the action attribute.
  • Title: Child Attribute Indicator
    Maximum Length: 1
    Default Value: false
    Indicates whether this attribute belongs to the parent or one of its child objects.
  • Title: Created By
    Read Only: true
    Maximum Length: 64
    The user who created the action attribute.
  • Title: Creation Date
    Read Only: true
    The date and time when the action attribute was created.
  • Title: Deleted
    Maximum Length: 1
    Default Value: false
    Indicates whether the attribute action is deleted. The default value is false.
  • Read Only: true
    Indicates whether the action attribute can be deleted.
  • Title: Last Update Date
    Read Only: true
    The date and time when the action attribute was last updated.
  • Title: Last Updated By
    Read Only: true
    Maximum Length: 64
    The user who last updated the action attribute.
  • Title: Last Update Login
    Read Only: true
    Maximum Length: 32
    The login details of the user who last updated the action attribute.
  • Links
  • Read Only: true
    Indicates whether the action attribute can be updated.
  • Title: Usage
    Maximum Length: 30
    Default Value: ORA_SVC_CREATE
    The code indicating when the attribute is to be used. A list of valid values is defined in the lookup ORA_SVC_AP_ATTRIBUTE_USAGE_CD.
  • Title: Usage Value
    Maximum Length: 255
    The display value corresponding to the usage lookup code for the action attribute.
Back to Top

Examples

The following example shows how to create an action attribute by submitting a POST request on the REST resource using cURL.

cURL Command

curl -u <username:password> \ -X POST -d @example_request_payload.json https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/actions/ACT0000044367/child/actionAttribute

Example of Request Body

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

{
"AttributeName" : "Subject",
"AttributeValueContextCd" : "ORA_SVC_CUSTOM",
"DeletedFlag" : "N",
"UsageCd" : "ORA_SVC_CREATE"
}

Example of Response Body

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

{
"ActionAttributeId": 300100118913154,
"ActionId": 300100118621756,
"AttributeName": "Subject",
"AttributeValue": null,
"AttributeValueContextCd": "ORA_SVC_CUSTOM",
"CreatedBy": "SALES_ADMIN",
"CreationDate": "2017-09-27T12:58:24+00:00",
"DeletedFlag": false,
"LastUpdateDate": "2017-09-27T12:58:24.014+00:00",
"LastUpdateLogin": "5A2BD805BC436ED2E0538E09F20A9D1F",
"LastUpdatedBy": "SALES_ADMIN",
"UsageCd": "ORA_SVC_CREATE",
"UpdateFlag": true,
"DeleteFlag": true,
"links": [
 ...
 ]
}
Back to Top