Update one favorite charge account

patch

/fscmRestApi/resources/11.13.18.05/requisitionPreferences/{requisitionPreferencesUniqID}/child/favoriteChargeAccounts/{UserPreferenceAccountId}

Request

Path Parameters
  • Value that uniquely identifies the favorite charge account in the requisition preferences.
  • This is the hash key of the attributes which make up the composite key for the Requisition Preferences resource and used to uniquely identify an instance of Requisition Preferences. The client should not generate the hash key value. Instead, the client should query on the Requisition Preferences collection resource in order to navigate to a specific instance of Requisition Preferences 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
  • Maximum Length: 255
    Account to which the goods or services requested are charged.
  • Maximum Length: 50
    Nick name of the charge account specified in the requisition preferences.
  • Value that uniquely identifies the charge account combination.
  • Maximum Length: 1
    Contains one of the following values: true or false. If true, then the favorite charge account is set as primary. If false, then the favorite charge account isn't set as primary. This attribute doesn't have a default value.
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 : requisitionPreferences-favoriteChargeAccounts-item-response
Type: object
Show Source
Back to Top

Examples

This example describes how to update one favorite charge account.

Example cURL Command

Use the following cURL command to submit a request on the REST resource.

curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload'  "https://servername/fscmRestApi/resources/version/requisitionPreferences/requisitionPreferencesUniqID/child/favoriteChargeAccounts/UserPreferenceAccountId"
For example:
curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload'  "https://servername/fscmRestApi/resources/version/requisitionPreferences/300100562816699/child/favoriteChargeAccounts/300100566517994"

Example Request Body

The following example includes the contents of the request body in JSON format. You replace the request payload in the cURL command with the contents of the Example Request Body. The request payload specifies attribute values that the command will use in the record that it updates.

{
  "ChargeAccountNickname":"Operations CA",
  "PrimaryFlag": false
}

Example Response Body

The following example includes the contents of the response body in JSON format:
{
    "UserPreferenceId": 300100566517991,
    "UserPreferenceAccountId": 300100566517994,
    "CodeCombinationId": 300100566517995,
    "ChargeAccountNickname": "Operations CA",
    "ChargeAccount": "01-000-9110-0000-000",
    "PrimaryFlag": false,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/requisitionPreferences/300100566517991/child/favoriteChargeAccounts/300100566517994",
            "name": "favoriteChargeAccounts",
            "kind": "item",
            "properties": {
                "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
            }
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/requisitionPreferences/300100566517991/child/favoriteChargeAccounts/300100566517994",
            "name": "favoriteChargeAccounts",
            "kind": "item"
        },
        {
            "rel": "parent",
            "href": "https://servername/fscmRestApi/resources/version/requisitionPreferences/300100566517991",
            "name": "requisitionPreferences",
            "kind": "item"
        }
    ]
}
Back to Top