Get all lookups

get

/fndStaticLookups

Get all lookups

Request

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 all lookups 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  \
 -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.

{
    "items": [
        {
            "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"
                }
            ]
        },
        {
            "LookupType": "ZSF_FCST_GRAPHS",
            "LookupCode": "ZSF_GRAPH4",
            "Meaning": "Forecasted Revenue by Sales Channel",
            "Description": "Identifies which products sold the best through a given sales channel within a selected forecast.",
            "EnabledFlag": "N",
            "StartDateActive": "2012-08-08",
            "EndDateActive": "2012-08-08",
            "DisplaySequence": -4,
            "CreatedBy": "SEED_DATA_FROM_APPLICATION",
            "CreationDate": "2013-03-24T06:48:37+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/00020000000F5A53465F464353545F4752415048530000000A5A53465F475241504834",
                    "name": "fndStaticLookups",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/fndStaticLookups/00020000000F5A53465F464353545F4752415048530000000A5A53465F475241504834",
                    "name": "fndStaticLookups",
                    "kind": "item"
                }
            ]
        },
        {
            "LookupType": "ZSF_FCST_GRAPHS",
            "LookupCode": "ZSF_GRAPH3",
            "Meaning": "Forecasted Revenue by Customer",
            "Description": "Identifies which customers contribute the most revenue to a selected forecast.",
            "EnabledFlag": "N",
            "StartDateActive": "2012-08-08",
            "EndDateActive": "2012-08-08",
            "DisplaySequence": -3,
            "CreatedBy": "SALES_ADMIN",
            "CreationDate": "2012-04-26T16:09:35+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/00020000000F5A53465F464353545F4752415048530000000A5A53465F475241504833",
                    "name": "fndStaticLookups",
                    "kind": "item"
                },
                {
                    "rel": "canonical",
                    "href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/fndStaticLookups/00020000000F5A53465F464353545F4752415048530000000A5A53465F475241504833",
                    "name": "fndStaticLookups",
                    "kind": "item"
                }
            ]
        },
...
}
Back to Top