Get a lookup

get

/fndStaticLookups/{fndStaticLookupsUniqID}

Get a lookup

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Default Response

The following table describes the default response for this task.
Back to Top

Examples

The following example shows how to get a lookup by submitting a GET request on the REST resource.

cURL Command

curl -u <username:password> \
 -X GET https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/fndStaticLookups/00020000000F5A53465F464353545F4752415048530000000A5A53465F475241504835  \
 -H 'Content-Type: application/vnd.oracle.adf.resourceitem+json'  | json_pp

Example of Response Body

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

{
    "LookupType": "ZSF_FCST_GRAPHS",
    "LookupCode": "ZSF_GRAPH5",
    "Meaning": "Opportunity Contribution to Forecast",
    "Description": "Highlights which opportunity contributes the most revenue to a selected forecast.",
    "EnabledFlag": "N",
    "StartDateActive": "2012-08-08",
    "EndDateActive": "2012-08-08",
    "DisplaySequence": -5,
    "CreatedBy": "SEED_DATA_FROM_APPLICATION",
    "CreationDate": "2013-03-24T06:48:37.020+00:00",
    "LastUpdateDate": "2022-06-22T18:39:24.197+00:00",
    "LastUpdateLogin": "-1",
    "LastUpdatedBy": "SEED_DATA_FROM_APPLICATION",
    "Tag": null,
    "links": [
        {
            "rel": "self",
            "href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/fndStaticLookups/00020000000F5A53465F464353545F4752415048530000000A5A53465F475241504835",
            "name": "fndStaticLookups",
            "kind": "item"
        },
        {
            "rel": "canonical",
            "href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/fndStaticLookups/00020000000F5A53465F464353545F4752415048530000000A5A53465F475241504835",
            "name": "fndStaticLookups",
            "kind": "item"
        }
    ]
}
Back to Top