Get All Data List Items
Retrieves all items within a specific data list. Items are the individual options (e.g., “United States”, “Canada”) that appear in dropdown or checkbox fields on registration forms. Filter by data_list_id to get items for a specific list.
Authorizations
OAuth 2.0 bearer token obtained from POST /oauth2/token. Tokens expire after 30 minutes. Include in the Authorization header as Bearer {access_token}.
Query Parameters
integer - required - The ID of the list you want to retrieve items for
1
string - optional - Comma separated list of fields you want to return
"data_list_id,id,name"
string - optional - Filter conditions to narrow the results. Valid operators are =, !=, >=, <=, >, <, contains, beginswith, endswith
"id>123"
integer - optional - The page of results you want to view
"1"
integer - optional - The number of results per page (to a max of 200)
"5"
Comma-separated list of IDs to retrieve. When provided, only records matching these IDs are returned. All values must be positive integers. Maximum 100 IDs per request.