Create a salesperson reference account

post

/fscmRestApi/resources/11.13.18.05/salespersonReferenceAccounts

Request

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
  • Title: Business Unit
    A unit of an enterprise that performs one or more business functions that can be rolled up in a management hierarchy. The business unit is part of the unique set that identifies a reference account.
  • Title: Freight Account Combination
    The accounting flexfield combination for the Freight account.
  • Title: Receivables Account Combination
    The accounting flexfield combination for the Receivables account.
  • Title: Revenue Account Combination
    The accounting flexfield combination for the Revenue account.
  • Title: Salesperson ID
    The unique identifier of the salesperson.
  • Title: Salesperson Name
    Maximum Length: 360
    The name of the salesperson. The salesperson name is part of the unique set that identifies a reference account.
  • Title: Salesperson Number
    Maximum Length: 120
    The number that identifies the salesperson. The salesperson number is part of the unique set that identifies a reference account.
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 : salespersonReferenceAccounts-item-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to create a salesperson reference account by submitting a POST request on the REST resource using cURL.

curl -i -u "<username>:<password>" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -X POST -d <payload> https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/salespersonReferenceAccounts

Example Request Payload

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

{
    "SalespersonName": "Caroline Snel",
    "SalespersonNumber": "999990000955248",
    "BusinessUnit": "Vision India Corp",
    "ReceivablesAccountCombination": "01-430-5800-1400-000",
    "FreightAccountCombination": "01-430-5800-1400-000",
    "RevenueAccountCombination": "00-000-1100-1100-100"
}

Example Response Body

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

{
    "SalespersonId": 100000008143166,
    "SalespersonNumber": "999990000955248",
    "SalespersonName": "Caroline Snel",
    "BusinessUnit": "Vision India Corp",
    "ReceivablesAccountCombination": "01-430-5800-1400-000",
    "FreightAccountCombination": "01-430-5800-1400-000",
    "RevenueAccountCombination": "00-000-1100-1100-100",
    ...
    "links": [
        {
            "rel": "self",
            "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/salespersonReferenceAccounts/00030000000EACED0005770800005AF310F6813E0000000C52415F53414C4553524550530000000EACED00057708000110F0811A38A7",
            "name": "salespersonReferenceAccounts",
            "kind": "item",
            "properties": {
                             "changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                          }
        },
        {
            "rel": "canonical",
            "href": "https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/salespersonReferenceAccounts/00030000000EACED0005770800005AF310F6813E0000000C52415F53414C4553524550530000000EACED00057708000110F0811A38A7",
            "name": "salespersonReferenceAccounts",
            "kind": "item"
        },
        ...
    ]
}
Back to Top