Retrieve a list of option lists
get
                    /api/REST/1.0/assets/optionLists
Retrieves all option lists that match the criteria specified by the request parameters.
                
                Request
Supported Media Types
                - application/json
Query Parameters
                - 
                        count: integer
                        
                        Maximum number of entities to return. Must be less than or equal to 1000 and greater than or equal to 1.
- 
                        depth: string
                        
                        Level of detail returned by the request. Eloqua APIs can retrieve entities at three different levels of depth:minimal,partial, andcomplete. Any other values passed are reset tominimalby default.
- 
                        lastUpdatedAt: integer
                        
                        The date and time the option list was last updated.
- 
                        orderBy: string
                        
                        Specifies the field by which list results are ordered.
- 
                        page: integer
                        
                        Specifies which page of entities to return (the count parameter defines the number of entities per page). If the page parameter is not supplied, 1 will be used by default.
- 
                        search: string
                        
                        Specifies the search criteria used to retrieve entities. See the tutorial for information about using this parameter.
Response
Supported Media Types
                - application/json
200 Response
OK.
                
                
                    Root Schema : QueryResultOptionList
    
      Type: 
      
    
    
    
    objectTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        QueryResultOptionList- 
            elements: 
            array  elements
            
            Array of option list fields.
- 
            page: 
            integer
            The specified page.
- 
            pageSize: 
            integer
            The page size.
- 
            total: 
            integer
            The total amount of results.
- 
            type: 
            string
            The asset's type in Eloqua.
Nested Schema : elements
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayArray of option list fields.
    
    
    
    
    
        Show Source
        - 
            Array of: 
                object  OptionList
            
            Title:OptionList
Nested Schema : OptionList
    
      Type: 
      
    
    
    
    objectTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        OptionList- 
            createdAt: 
            string
            Read Only:trueUnix timestamp for the date and time the option list was created.
- 
            createdBy: 
            string
            Read Only:trueThe login id of the user who created the option list.
- 
            currentStatus: 
            string
            The option list's current status.
- 
            depth: 
            string
            Read Only:trueLevel of detail returned by the request. Eloqua APIs can retrieve entities at three different levels of depth:minimal,partial, andcomplete. Any other values passed are reset tocompleteby default. For more information, see Request depth.
- 
            description: 
            string
            The description of the option list.
- 
            elements: 
            array  elements
            
            A list of option elements.
- 
            id: 
            string
            Read Only:trueThe option list's unique identifier.
- 
            name: 
            string
            The name of the option list.
- 
            permissions: 
            string
            The permissions for the option list granted to your current instance. This is a read-only property.
- 
            type: 
            string
            The option list's type in Eloqua. This is a read-only property.
- 
            updatedAt: 
            string
            Read Only:trueUnix timestamp for the date and time the option list was last updated.
- 
            updatedBy: 
            string
            Read Only:trueThe login id of the user that last updated the option list.
Nested Schema : elements
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayA list of option elements.
    
    
    
    
    
        Show Source
        - 
            Array of: 
                object  Option
            
            Title:Option
Nested Schema : Option
    
      Type: 
      
    
    
    
    objectTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        Option- 
            displayName: 
            string
            The display name for the option that is displayed within the option list.
- 
            type: 
            string
            The asset's type in Eloqua. This is a read-only property. This asset is an "Option".
- 
            value: 
            string
            The option's internal value. This value is not displayed externally.
400 Response
Bad request. See Status Codes for information about other possible HTTP status codes.
                
                
                401 Response
Unauthorized. See Status Codes for information about other possible HTTP status codes.
                
                
                403 Response
Forbidden. See Status Codes for information about other possible HTTP status codes.
                
                
                404 Response
The requested resource was not found. See Status Codes for information about other possible HTTP status codes.
                
                
                500 Response
The service has encountered an error. See Status Codes for information about other possible HTTP status codes.
                
                
                Examples
The following examples demonstrate how to retrieve option lists using an HTTP request and cURL. For more information on requests, see API requests.
HTTP Request Example
Retrieve the first 2 option lists in your database:
GET /api/REST/1.0/assets/optionLists?count=2
			Response:
{
    "elements":[
        {
            "type":"OptionList",
            "id":"1",
            "depth":"minimal",
            "name":"Lead Rating"
        },
        {
            "type":"OptionList",
            "id":"2",
            "depth":"minimal",
            "name":"Company Revenue"
        }
    ],
    "page":1,
    "pageSize":2,
    "total":16
}
			cURL Example
Here is the same example in cURL given an instance with the name APITest, username API.User, and POD of 3.
                  
curl --user "APITest\API.User" --request GET https://secure.p03.eloqua.com/api/REST/1.0/assets/optionLists?count=2