Get the configured list of custom objects

get

/customobjects

This method gets the configured list of custom objects to be displayed in the user interface.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : customobjectlist
Type: object
Show Source

401 Response

Authentication Required

403 Response

Access Forbidden
Back to Top

Examples

The following example shows how to get the configured list of custom objects by submitting a get request on the REST resource using cURL.

cURL Command

curl -u <username:password> \ -X https://servername.fa.us2.oraclecloud.com/crmRestApi/clickhistory/resources/customobjects

Example of Response Body

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

{
    "items": [
        {
            "displaynameplural": "CE1MiceIssueSubtype",
            "displayname": "MiceIssueSubtype",
            "name": "CE1MiceIssueSubtype_c",
            "id": 0,
            "definition": "sessiondef.oracle.apps.custom.views.CE1MiceIssueSubtype_c"
        }
    ]
}
Back to Top